$(document).ready(function() {
	//Default Action
	$(".ev_right").hide(); //Hide all content
	$("ul.ev_tabs li:first").addClass("ev_active").show(); //Activate first tab
	$(".ev_right:first").show(); //Show first tab content
	//On Click Event
	$("ul.ev_tabs li").click(function() {
		$("ul.ev_tabs li").removeClass("ev_active"); //Remove any "ev_active" class
		$(this).addClass("ev_active"); //Add "ev_active" class to selected tab
		$(".ev_right").fadeOut(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the ev_active tab + content
		$(activeTab).delay(800).fadeIn(); //Fade in the ev_active content
		return false;
	});

});
