jQuery.noConflict();
jQuery(document).ready(function() {

var opheight = jQuery('#clone_toopen').innerHeight();	

//opheight = opheight+85;
opheight = 486;
jQuery('#tocopy').html(jQuery('#clone_toopen').html());

/*jQuery('#tocopy').html(jQuery('#clone_toopen').html()); jQuery('#toopen').animate({height:opheight},700);*/
jQuery('#open').hover(

	function(){
		jQuery('#toopen').removeClass('dnone'); 
		jQuery('#toopen').animate({height:opheight},400);
	},
	
	function(){
		jQuery('#toopen').animate({height:0},300, function(){jQuery('#toopen').addClass('dnone');
	}); 
		
});	
		
			
jQuery('#closeFblock').click(function(){jQuery('#toopen').animate({height:0},400, function(){jQuery('#toopen').addClass('dnone');});});

});


