$(function(){
	
	// Contact Overlay
	$('.sub_nav_menu a[rel=#contact_overlay]').colorbox({inline:true, href:"#contact_overlay", opacity:0.75, width:"336px"});
	
	// Photo Gallery
	$('.image_frame').loopedSlider({
		container: ".photos",
		slides: ".slides",
		pagination: "pagination",
		slidespeed: 800
	});
	
	// Services
	$('.service_details').hide();
	$('.service_details:first').show();
	$('.services_list a').click(function(){
		$('.service_details').hide();
		$('#'+$(this).attr('rel')+'').show();
	});
	
});