$(document).ready(
  function(){
	
	if($("#cycleLancamentos img").length > 1){
		
	  $("#cycleLancamentos").cycle({
	  before: onBefore
    });
	
	  function onBefore(curr, next, opts){ 
	   
	   var id = next.id.split('-');
	   id = id[1];
	   
	   $("#lancamentosFundo").click(function(){ window.location = 'prod_det.php?id=' + id; });
	   
    }
		
	} else
	  $("#cycleLancamentos img").show();
		
	
	$("#promocoes div").mouseover(
	  function(){
		
		var id = $(this).attr('id');
		var src = $('#' + id + '-colorida').attr('src');
		$(this).css('background', 'url(' + src + ')');
		$(this).css('background-repeat', 'no-repeat');
		
      }						  
    ).mouseout(
	  function(){
		  
		var id = $(this).attr('id');
		var src = $('#' + id + '-bp').attr('src');
		$(this).css('background', 'url(' + src + ')');
		$(this).css('background-repeat', 'no-repeat');
		  
      }
	);
	
	$("#popUpHome").click(
		
		 function(){
			 $(this).hide();
			 }
		
		);



  }				  
);
