$phx = jQuery.noConflict();
$(document).ready(function() {
     $phx('#player').fadeIn();
     $phx('.you-tube').fadeIn();
	/* 
    $phx('.advanced-recent-posts li a').click(function(event){
	event.preventDefault();
	window.location = 'tekoa-da-silva/';
	
    });*/
 $phx('.advanced-recent-posts li a').click(function(event){
	
	if($phx(this).hasClass('active-media') == false){
	
	$url = $phx(this).attr('title');
	var t = $phx(this);
	$phx('.content-container').fadeOut('slow',function(){
	    
	});

        $phx.ajax({
	    url: $url,
	    type:'get',
	    data:'mode=true',
	    success: function(data){
		$phx('.advanced-recent-posts li a.active-media').removeClass('active-media');
		t.addClass('active-media');
		$phx('#switch-content').html(data);
		
		$phx('.content-container').fadeIn('slow',function(){
		    $phx('#player').fadeIn();
		    $phx('.you-tube').fadeIn();
		});
	    }
	});
	}
    });

 });


