(function($){


$.fn.thumbnails_function=function(){ 

$('.thumbnail').live("mouseenter", thumbnailEnter_function);
$('.thumbnail').live("mouseleave", thumbnailLeave_function);


function thumbnailEnter_function(){
$(('.thumbnail_image'),this).animate({ height: '200', left: '-8', top: '-8', width: '200'}, 100);
$(('.thumbnail_video'),this).animate({ height: '115', left: '-8', top: '-8', width: '200'}, 100);
$(('.details'),this).animate({bottom: '0'}, 100);
}

function thumbnailLeave_function(){
$(('.thumbnail_image'),this).animate({ height: '185', left: '0', top: '0', width: '185'}, 100);
$(('.thumbnail_video'),this).animate({ height: '106', left: '0', top: '0', width: '185'}, 100);
$(('.details'),this).animate({ bottom: '-25'}, 100);
}



//close thumbnail function
}
				
	
// CLOSE FUNCTION
})(jQuery);
		
