
	
	
	$('div.section-options a img').animate({ width: "180px", height: "90px"}, 3000, 'easeInOutCubic' );
                                        
                                        
	$('div.section-options a').mouseenter(function(){
										$(this).animate({ opacity: 0.8}, 400, 'easeInOutCubic' );
										}) 
	
	$('div.section-options a').mouseleave(function(){
										$(this).animate({ opacity: 1}, 300, 'easeInOutCubic' );
										})
