jQuery(function($){
	
	 //$('#quotes ul').quote_rotator({
	//	rotation_speed: 4000,							   
	//});
	 

		
	 
	//controls for full screen image
	$("#full-screen-image").fullSizeImage({ 
		 overlayLine: true,
		 repositionImage : true,
		 offset : "0,0",
		 position : "fixed"
	});
	

	$("#full-screen-image").cycle({ 
        fx: 'fade',
		
		speed: 4000,
		timeout: 1000
    }); 
	

	var copyH = $('#content').height();
									
	$('#close').click(function()
	{

				$('#content').animate({
					height: '34',
					width: '78'
  				}, 500, function() {
					
  					  $(this).prepend("<div id='open'><img src='images/btns/open.png' alt='Open' /></div>");
					  $('#copy').hide();
 				 });							
	});
	
	
	$('#open').live('click',function()
	{

		$('#content').animate({
			height: copyH,
			width: '520'
  		}, 500, function() {
			 $('#open').fadeOut();
			 $('#copy').fadeIn();
 		});							
	});
	
	

});//end jquery

