﻿
// start slide wanted poster when moused over/out
//http://docs.jquery.com/Effects/stop#clearQueuegotoEnd
//http://docs.jquery.com/Events

$(document).ready(function() {
    $('.wanted').mouseenter(function() { $(this).stop(true).animate({ top: "-30px" }, 1000); });
    $('.wanted').mouseleave(function() { $(this).stop(true).animate({ top: "-250px" }, 1000); });
});


// end





//$(document).ready(function() {
//    $('.tab').mouseenter(function() { $('.feedbackForm').stop(true).animate({ height: "400px" }, 1000); });
//    $('.tab').mouseleave(function() { $('.feedbackForm').animate({ height: "0px"}.stop(true), 1000); });
//    $('.tab').mouseenter(function() { $(this).stop(true).animate({ top: "380px" }, 1000); });
 //   $('.tab').mouseleave(function() { $(this).animate({ top: "-20px"}.stop(true), 1000); });
//});




// start slide feedback form when moused over/out

$(document).ready(function() {
$('.fb_feedbackForm').mouseenter(function() { $(this).stop(true).animate({ height: "400px" }, 1000); });
$('.fb_feedbackForm').mouseleave(function() { $(this).stop(true).animate({ height: "25px" }, 1000); });
});


// end


