/****************************************
*                                       *
*   Copyright 2010 - Granja Bescuit     *
*   Programació: Osona Disseny Web      *
*   Contacte: info@osonadissenyweb.com  *
*                                       *
****************************************/

$(document).ready(function(){
	$('.nav h2 a').hover(
		function(){ //Roll hover
			atr = $(this).attr("rel");
			$(atr).fadeIn("fast");
		},
		function(){ //Roll out
			atr = $(this).attr("rel");
			$(atr).fadeOut("fast");
	});
});
