function abrirPostPagina(titulo,id, img, video){
	
	$("#postsPagina").children().hide();
	$("#postPagina" + id).show();
	$("#portfolio").html("").append("<div id='ytapiplayer'></div>");
	
	if (video != ""){
		
		var params = { allowScriptAccess: "always" };
		var atts = { id: "myytplayer" };
		var playerId = swfobject.embedSWF(video+"&hl=pt_BR&fs=1&rel=0&color1=000000&color2=652222", "ytapiplayer", "715", "405", "8", null, null, params, atts);
		
	}else{
		
		$("#portfolio").html("<img src='" + img + "' width=715 height=405>");
		
	}
	
}

function abrirPortfolio(titulo, desc, video, playerId){	
	$('#desc_content h4').hide().fadeIn('slow').html(titulo);
	$('#desc_content #desc_content_text').fadeIn('slow').show().html(desc);
	$('#portfolio').find('object').attr('data',video+"&hl=pt_BR&fs=1&rel=0&color1=000000&color2=0B3E54");
	
	var params = { allowScriptAccess: "always" };
	var atts = { id: "myytplayer" };
	var playerId = swfobject.embedSWF(video+"&hl=pt_BR&fs=1&rel=0&color1=000000&color2=0B3E54", "ytapiplayer", "715", "405", "8", null, null, params, atts);
}

$(document).ready(function(){
	$('#inner_fade').cycle({
		pager: '#inner_nav',
		fx: 'fade',
		speed: 300, 
	    timeout: 10000
	});
	
	$('#portfolio_galeria ul').jcarousel({vertical:true,scroll:4});
	
	$('#home_news ul#tab li:first-child').css('margin-left','0px');
	
	$('#content_left .post:last-child').css('border-bottom','0px');
	
	$('#home_news ul#tab li').click(function(){
		$('#home_news ul#tab li').removeClass('active');
		$(this).addClass('active');
	})
	
	$('li#tab_noticias').click(function(){
		$('#news_cont').fadeIn('slow');
		$('#quemsomos_cont, #socio_cont, #instalacoes_cont').hide();
	})
	
	$('li#tab_quemsomos').click(function(){
		$('#quemsomos_cont').fadeIn('slow');
		$('#instalacoes_cont, #socio_cont, #news_cont').hide();
	})
	
	$('li#tab_socio').click(function(){
		$('#socio_cont').fadeIn('slow');
		$('#quemsomos_cont, #news_cont, #instalacoes_cont').hide();
	})
	
	$('li#tab_instalacoes').click(function(){
		$('#instalacoes_cont').fadeIn('slow');
		$('#quemsomos_cont, #socio_cont, #news_cont').hide();
	})
})
