
$(document).ready(function(){
	
  	TB_init;
  		
	$(".view-Pecas-e-Acessorios, .view-SeminovosCnoas, .view-SeminovosPOA, .view-SeminovosCachoeirinha").find("img").each(function(i) {
  		var str = $(this).src();
  		var url = str.replace(/_tn./,".");
		$(this).css("cursor","pointer");
		$(this).css("border","2px solid #F90");
		$(this).click(function(){
			var t = this.title || this.name || null;
  			var g = this.rel || false;
  			TB_show(t,url,g);
  			this.blur();
		})
	});

	$("#squeeze #flashcontent").insertAfter("#block-block-37");
	
	$("#squeeze .upload-image-images").insertBefore(".image-preview");
	
	$(".view-Novos ul li").each(function(i) {
       var valor = "'"+$(this).find("a").attr("href")+"'";    
       $(this).find("img").wrap("<a href="+valor+"></a>");
   });
	
	
  })

