jQuery(function($) {
$(document).ready(function(){
	// ID Tabs
	$('#tabContent>li:gt(0)').hide();
	$('#tabsNav li:first').addClass('active');
	$('#tabsAndContent #tabsNav li').bind('click', function() {
		$('li.active').removeClass('active');
		$(this).addClass('active');
		var target = $('a', this).attr('href');
		$(target).slideDown(400).siblings().slideUp(300);
		return false;
	});
	
	
	//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' 
	         })
	
});
});