//var dd = jQuery.noConflict();
//$ = dd;
jQuery(document).ready(function(){

jQuery('#dynamic-blocks p').hide();

jQuery('#dynamic-blocks li').hover(
	function(){
		jQuery('.block-content',this).animate({ top: -50}, 500);
		jQuery('p',this).fadeIn("slow");
		
	
	},
	function(){
		jQuery('.block-content',this).animate({ top: 0}, 500);
		jQuery('p',this).fadeOut();
	});
 });
