var $j=jQuery.noConflict();
(function($j){

	$j(document).ready(function(){	
								
		
	
		$j("a[rel^='prettyPhoto']").prettyPhoto();
		$j(".tab_content").hide(); //Hide all content
		//$j("ul.tabs_ul li:nth-child(1)").addClass("active").show(); //Activate first tab
		$j(".tab_content:nth-child(2)").show(); //Show first tab content		
		$j("ul.tabs_ul li").click(function(event) {
		$j("ul.tabs_ul li").removeClass("active"); //Remove any "active" class
			$j(this).addClass("active"); //Add "active" class to selected tab
			$j(".tab_content").hide(); //Hide all tab content
			var activeTab = $j(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
			$j(activeTab).fadeIn(); //Fade in the active content
			return false;
		});		
		$j("ul.tabs_ul li:nth-child(3)").unbind("click") ;
		$j("ul.tabs_ul li:nth-child(4)").unbind("click") ;
	});
})(jQuery);

				

		
		
		
		
		




