jQuery(function($) {
$(document).ready(function(){
	
	// Initialize colorbox
	$(".colorbox").colorbox({maxWidth: "90%", maxHeight: "90%", opacity:.6});
	$(".ext").colorbox({iframe:true, innerWidth:"90%", innerHeight:"90%", opacity:.6});
	$(".nwsltr").colorbox({iframe:true, innerWidth:"670px", innerHeight:"580px", opacity:.6});
	
	//Slider Toggle (anchor with class .toggle will expand it's href target)
	$('.hideme').hide();
	$('.toggle').bind('click', function() {
		var maketoggle = $(this).attr('href');
		$(maketoggle).slideToggle(300);
		return false;
	});
	
	//Cross Slider
	$('#banner_photos').innerfade({
	            speed: 'slow', 
	            timeout: 4000, 
	            type: 'sequence', 
	            containerheight: '275px' 
	         })
	
});
});
