$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("#navigation ul li a").click(function(){
		$(this).blur();
	});
	
	//Tabs Scripts
	$(function() {
		$("#tabs").tabs();
	});
	
		// Accordion
	$("#accordion").accordion({ 
	header: "h3", 
	event: "click",
	icons: {
    	header: "ui-icon-circle-arrow-e",
   		headerSelected: "ui-icon-circle-arrow-s"
	},
	active: "none",
	collapsible: true,
	animated: 'bounceslide',
	});
	
	$(".image1").mouseover(function(){
	$(this).stop().animate({width:'700px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	$(".image1").mouseout(function(){
	$(this).stop().animate({width:'700px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
});	
