var rollover = function(el,width,height,hoverColor) {
	var buttons = el.children(".button");
	buttons.each(function(e){
		var index = buttons.index($(this));
		var positionX = index * width * -1;
		var subtitle = el.children(".subtitle").eq(index);
		var prevTextColor = subtitle.css("color");

		$(this).hover(function(e){
			$(this).css({
					backgroundPosition : positionX + "px -" + height + "px"
				});
			subtitle.css({
					color : hoverColor
				});
		},function(e){
			$(this).css({
					backgroundPosition : positionX + "px 0"
				});
			subtitle.css({
					color : prevTextColor
				});
		});
	});
};

var hoverColor = "#899611";

$(document).ready(function(){

	rollover($("#receta_n1"),128,64,hoverColor);
	rollover($("#receta_n2"),93,64,hoverColor);

	//$("#suscribe").hover(function(event){
	 ////Cambiar fondo 
		//$("#suscribe").css("color", '#899611');
	//});
	//$("#suscribe").mouseout(function(event){
	 ////Cambiar fondo 
	   //$("#suscribe").css("color", '#545D04');
	//});



});

