$(document).ready(function(){

	Cufon.replace('h1, h2, .title', { fontFamily: 'Calibri', hover: true });


	/*GRAYSCALE BRANDS*/
	$("div#brands > a, div#brandsHomepage > a").hover(function() {
		var thumbOver = $(this).find("img").attr("src");
		$(this).css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find("span").stop().animate({opacity: 0}, 300);
	} , function() { //on hover out...
		$(this).find("span").stop().animate({opacity: 1}, 300);
	});


});

