$(document).ready(function() {
	$("#slideTV #move-left, #slideTV #move-right").hide();
	
	$("#slideTV #slides").mouseover(function() {
		$("#slideTV #move-left, #slideTV #move-right").show();
	});
	
	$("#slideTV #slides").mouseout(function() {
		$("#slideTV #move-left, #slideTV #move-right").hide();
	});
	
	$("#btnBillboard").click(function() {
		$(this).toggleClass("on");
		$("#btnFoto").toggleClass("on");
		
		$("#slideTV #billboard").toggle();
		return false;
	});
	
	$("#btnFoto").click(function() {
		$(this).toggleClass("on");
		$("#btnBillboard").toggleClass("on");
		
		$("#slideTV #billboard").toggle();
		return false;
	});
	
	
	$('#slideTV ul').cycle({
		fx: 'scrollLeft',
		timeout: 4000,
		speed: 500,
		prev: '#move-left',
		next: '#move-right',
		//pager: '#nav',
		slideExpr: 'li', 
		pause: 1 
	});
	
	
	
});

