$(document).ready(function(){
		//$("div:odd").css("background-color", "#CCC");
		//$("div:even").css("background-color", "#666");
		$("a[rel='galeria']").colorbox({slideshow:true});
		$("a[rel='vinhos']").colorbox({iframe:true, innerWidth:800, innerHeight:656, scrolling:false});
		$("a[rel='cardapio']").colorbox({iframe:true, innerWidth:550, innerHeight:696, scrolling:false});
		$(".vAlign").vAlign('p');//vertical align
		$(".b1").border('1px solid #000');
		$(".imgsp").each(function(){
				  img = $(this).attr("src");
				  alt = $(this).attr("alt");
				  h = $(this).attr("height");
				  w = $(this).attr("width");
				  //alert(img);
				  $(this).attr("src", "/tpl/default/images/space.gif");
				  $(this).css("background-image", "url("+img+")");
				  $(this).css("backgroundPosition", "center center");
				  $(this).css("background-repeat", "no-repeat");
				  //$(this).append('<img src="/tpl/default/images/space.gif" alt="'+alt+'" border="0"  width="'+w+'" height="'+h+'" style="background:url('+img+') center center no-repeat"  />');
		});
});
//form buscar********************************************************
function buscar(){
	var valor = $("#busca").val();
	if (valor == '' | valor == 'Buscar' | valor == 'Buscar'){
		document.getElementById('busca').value = 'Buscar';
	}else{
		window.location = "/productos/busca/"+valor;
	}
}
function buscahover(){
	var valor = $("#busca").val();
	if (valor == 'Buscar'){
		document.getElementById('busca').value = '';
	}
}
function bloqEnter(objEvent) {
	var iKeyCode;
	iKeyCode = objEvent.keyCode;
	if(iKeyCode == 13) return false;
	return true;
}
//fim form buscar*****************************************************
