
$(document).ready(function() {
	
	// Initialize the banner fades
	$(window).load(function() {
		$('#slider').nivoSlider({
			effect: 'boxRain',
			pauseTime: 6000,
			animSpeed: 1000
		});
	});
	
	// Button Rollovers
	$('div.circular div').hover(function() {
		// Stuff to do when the mouse enters the element;
		$(this).children('img.over').stop(true, true).fadeIn();
	}, function() {
		// Stuff to do when the mouse leaves the element;
		$(this).children('img.over').stop(true, true).fadeOut();
	});
	
	// Button Rollover Clicks
	$('div.circular img.over').click(function() {
		var href = $(this).siblings('a').attr('href');
		window.location = href;
	});
	
	Cufon.replace('h4.white_headline', { fontFamily: 'Gotham' });
	//Cufon.replace('h6.sub_headline', { fontFamily: 'Gotham' });

	// Pop-up the menu when homepage ads are clicked
	/*
	$('a.nivo-imageLink').live('click', function(e){
		console.log('here');
		$('#main-products-menu').css('display', 'none').addClass('active').fadeIn(fadeSpeed, 'swing');
		e.preventDefault();
	});
	*/
});
