$(document).ready(function(){
						   
	//Png fix				   
	 $(document).pngFix(); 

    //Switch tab
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:last").addClass("active").show(); 
	$(".tab_content:first").show(); 

	//On Click Event
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active"); 
		$(this).addClass("active"); 
		$(".tab_content").hide(); 
		var activeTab = $(this).find("a").attr("href"); 
		$(activeTab).show(); 
	});
	
	

});
