$(document).ready(function(){
	bodegaClicks();
	$('a.imagenPlato').colorbox();
	$('a.imagenVino, div.inferiorBusqueda div.resultado a').colorbox({iframe: true, width: 820, height: 450});
	$('a.curriculum').colorbox({width: 545, height: 450, iframe: true});
	$('a.solicitarReserva').colorbox({width: 388, height: 550, iframe: true});
	$('a.terminos').colorbox({width: 800, height: 600, iframe: true});
	$('#request').colorbox({width: 465, height: 343, iframe: true});
	$('a[rel="colorbox"]').colorbox();
	
	$('div.resultado').mouseover(function(){
		$(this).css('background', '#f6f6f6');
	}).mouseout(function(){
		$(this).css('background', '#fff');
	});
});