// JavaScript Document
// test auto-ready logic - call corner before DOM is ready
   
 /* jQuery(document).ready(function(){
	
	
	
	
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	jQuery(" #sat li").corner("bottom 14px");
	//Remove outline from links
	jQuery(" #sat a").click(function(){
		jQuery(this).blur();
	});
	
	//When mouse rolls over
	jQuery(" #sat li").mouseover(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	
	//When mouse is removed
	jQuery(" #sat li").mouseout(function(){
		jQuery(this).stop().animate({height:'40px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	
	jQuery(".red").mouseover(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	jQuery(".red").mouseout(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		});
    	
});*/
jQuery(document).ready(function(){
	
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	jQuery(".head_ul li").corner("bottom 14px");
	//Remove outline from links
	jQuery(".head_ul a").click(function(){
		jQuery(this).blur();
	});
	
	//When mouse rolls over
	jQuery(".head_ul li").mouseover(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	
	//When mouse is removed
	jQuery(".head_ul li").mouseout(function(){
		jQuery(this).stop().animate({height:'50px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	
	jQuery(".orange").mouseover(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	jQuery(".orange").mouseout(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		});
	jQuery(".orange_about").mouseover(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		
	});
	jQuery(".orange_about").mouseout(function(){
		jQuery(this).stop().animate({height:'60px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		.corner("bottom 14px");
		});
    	
}); 
jQuery(function() {

	jQuery("a.lightbox").lightBox({

  show_extended_info:false,download_link:true 

 

})
	
	
	
	});


