jQuery(function() {
    jQuery('img[data-hover]').hover(function() {
        jQuery(this).attr('tmp', jQuery(this).attr('src')).attr('src', jQuery(this).attr('data-hover')).attr('data-hover', jQuery(this).attr('tmp')).removeAttr('tmp');
    }).each(function() {
        jQuery('<img />').attr('src', jQuery(this).attr('data-hover'));
    });;
    
});


	jQuery(function() {
			jQuery('.imgholder').hover(function(){
				jQuery(this).find('.desc').animate({top:'0px'},{queue:false,duration:200});
			}, function(){
				jQuery(this).find('.desc').animate({top:'-50px'},{queue:false,duration:200});
			});
		});
