$(document).ready(function(){
	
	// default menu configs
	$('.mainnav li').hover(
         function() {
            $(this).find('ul:first').css({visibility: 'visible', display: 'none'}).slideDown(400);
         },
         function() {
            $(this).find('ul:first').css({visibility: 'hidden'});
         }
      );

	// Opens link in new window.
	$('a.new-window').click(function() {
		window.open(this.href);
		return false;
	});


	// Product finder accordion
	$('body#home #product_find_home').parent().addClass('product_find_home').click(function(){
		$('#product_locator_form_wrapper').slideToggle();
		return false;
	});


	// Fun Facts Crawler
	// http://www.malsup.com/jquery/cycle/
	$('#tipTicker ul').cycle({
		fx: 'scrollLeft',
		timeout: 5000,
		speed: 1200,
		random: true,
		pause: true
	});

});