jQuery(document).ready(function (){
	jQuery.noConflict();	
       jQuery("#ocultar").click(function(event){
			event.preventDefault();
			jQuery("#yshout").hide("slow");
			jQuery("#contador").hide("slow");
			jQuery("#ocultarchat").hide("slow");
			jQuery("#mostrarchat").show("slow");
			jQuery("#mostrarchat").css({'visibility': 'visible'});
			jQuery("#Televisor").fadeOut(1000, function(){
			   jQuery("#Televisor").css({'left':250});
			   jQuery("#Televisor").fadeIn(1000);
			});	
			jQuery("#Canal").fadeOut(1000, function(){
			   jQuery("#Canal").css({'left':322});
			   jQuery("#Canal").fadeIn(1000);
			});
			jQuery("#Canales").fadeOut(1000, function(){
			   jQuery("#Canales").css({'left':446});
			   jQuery("#Canales").fadeIn(1000);
			});
	   });
	   jQuery("#mostrar").click(function(event){
			event.preventDefault();
			jQuery("#yshout").show("slow");
			jQuery("#contador").show("slow");
			jQuery("#ocultarchat").show("slow");
			jQuery("#mostrarchat").hide("slow");
			jQuery("#Televisor").fadeOut(1000, function(){
			   jQuery("#Televisor").css({'left':-2});
			   jQuery("#Televisor").fadeIn(1000);
			});	
			jQuery("#Canal").fadeOut(1000, function(){
			   jQuery("#Canal").css({'left':70});
			   jQuery("#Canal").fadeIn(1000);
			});
			jQuery("#Canales").fadeOut(1000, function(){
			   jQuery("#Canales").css({'left':194});
			   jQuery("#Canales").fadeIn(1000);
			});
	   });
	   jQuery("#ocultarpubli").click(function(event){
	   		event.preventDefault();
	   		jQuery("#Publicidad").hide("slow");
			jQuery("#PubliTele").hide("slow");
			jQuery("#PubliPlay").hide("slow");

	   });
	   jQuery("#ocultarpubliplay").click(function(event){
	   		event.preventDefault();
			jQuery("#PubliPlay").hide("slow");
			jQuery("#Publicidad").hide("slow");
			jQuery("#PubliTele").hide("slow");
	   });
	   
    });