//Img blocks fading/dropping effect

jQuery(function () {
    jQuery('.block1').hover(function(){
        jQuery(this).children(".block1_link").children('.img_top').stop().animate({opacity: 1, top: "-200px"}, 400);
    }, function(){
        jQuery(this).children(".block1_link").children('.img_top').stop().animate({opacity: 1, top: "0px"}, 300);
    });
});
jQuery(function () {
    jQuery('.block2').hover(function(){
        jQuery(this).children(".block2_link").children('.img_top').stop().animate({opacity: 1, top: "-200px"}, 400);
    }, function(){
        jQuery(this).children(".block2_link").children('.img_top').stop().animate({opacity: 1, top: "0px"}, 300);
    });
});
jQuery(function () {
    jQuery('.block3').hover(function(){
        jQuery(this).children(".block3_link").children('.img_top').stop().animate({opacity: 1, top: "-200px"}, 400);
    }, function(){
        jQuery(this).children(".block3_link").children('.img_top').stop().animate({opacity: 1, top: "0px"}, 300);
    });
});
jQuery(function () {
    jQuery('.block4').hover(function(){
        jQuery(this).children(".block4_link").children('.img_top').stop().animate({opacity: 1, top: "-200px"}, 400);
    }, function(){
        jQuery(this).children(".block4_link").children('.img_top').stop().animate({opacity: 1, top: "0px"}, 300);
    });
});
