/*
 *  jQuery Arts by Arwin Ortiz
 *  @v1.0
 */
 
$(document).ready(function() {
	$("ul#navT > li a span").wrapInner('<div></div>');	
	$("#navT > li div").css({ position:'relative', top:'0px' });
	/*
	if( window.devicePixelRatio &&  window.getMatchedCSSRules ){
		$("#nav li ul").css({ paddingTop:'5px'});
	}
	*/
	
	$(".tab_content").hide(); 
	$("ul#navT li:first").addClass("active").show(); 
	$(".tab_content:first").show(); 
	
	$("ul#navT li:not(ul#navT li.content)").click(function() {
		$("ul#navT li").removeClass("active"); 
		$(this).addClass("active"); 
		$(".tab_content").hide();
		var activeTab = $(this).find("a").attr("href"); 
		if(activeTab=='#tab1'){
			$(activeTab).html('<iframe src="slideshow.php" frameborder="0" scrolling="no" style=" position:relative; height:542px; width:802px; overflow:hidden;  border:none; padding:0; margin:0;"></iframe>');
		}		
		$(activeTab).fadeIn();
		return false;
	});	
}); 
