$(document).ready(function() {
						   
	//Rotating Slides on the home page
	$(".slide_content").carouFredSel({
		direction: "left",
		items:{visible:1},
		scroll:{items:1, pauseOnHover:true, duration:2000, easing:'swing'},
		auto:{pauseDuration:4000},
		pagination:{container: '.slide_navigation'}
	});  
	
	//Once you click one of the slide buttons, stop the auto animation
	$(".slide_navigation").click(function() {
		$(".slide_content").trigger("pause", true);									  
	});
	
	//Colorbox
	$(".colorbox_photo").colorbox({ opacity:"0.75", photo:true, maxHeight:"80%", maxWidth:"80%" });
	$(".colorbox_website").colorbox({ opacity:"0.75", iframe:true, height:"80%", width:"80%" });
	
	//Print Button
	$('a.print').click(function() {
		window.print();
		return false;
	});

	
});
