// COMPORTAMIENTO RECETAS

function initRecetas(){
	$('#indice .enlace').hover(
		function (){$(this).find('a').addClass('indhover'); $(this).css({'cursor': 'pointer'})},
		function (){$(this).find('a').removeClass('indhover')}
	).click(function(){
		document.location = $(this).find('a').attr('href');
	});
	$('#complemento .prod').hover(
		function (){$(this).find('a').addClass('prodhover'); $(this).css({'cursor': 'pointer'})},
		function (){$(this).find('a').removeClass('prodhover')}
	).click(function(){
		document.location = $(this).find('a').attr('href');
	});
}

$(document).ready(function(){
	initRecetas();
});