$(document).ready(function() {
 
	//Default Action
	$(".tab_content").hide(); //Hide all content
	$(".tab_header a:first").addClass("select"); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content
	
	//On Click Event
	$(".tab_header a").click(function() {
		$(".tab_header a").removeClass("select"); //Remove any "active" class
		$(this).addClass("select"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content
		var activeTab = $(this).attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});
	
	
	$('.homeBanner img').hover(function(){
		$('.homeBanner img').animate({opacity: 0.4},{queue:false,duration:500});								
		$(this).animate({opacity: 0.9},{queue:false, duration:500});			
	},function(){
		$('.homeBanner img').animate({opacity: 1.9},{queue:false,duration:500});
	});
	
	
	
});
