// JavaScript Document
$j(document).ready(function() {
	$j(".mainNav ul li:first-child, .footerNav ul li:first-child, .footerSeoLinkBlock ul li:first-child").addClass("first");
	$j(".mainNav ul ul li:first-child").removeClass("first");
	$j('.locationPan div:nth-child(3n)').css('margin-right','0');
	
	$j(".mainNav ul li").hover(function () {
		$j(this).children("ul").slideDown();
	},
	function () {
		$j(this).children("ul").hide();
	});
	
});

// Slider
$j(function() { 
    $j('#gallerySlider').cycle({ 
        fx:     'scrollHorz', 
        speed:   500, 
        timeout: 0, 
        pager:  '#nav1'
    }); 
}); 

// featured Scroller
$j(function() { 
    $j('#gallerySlider2').cycle({ 
        fx:     'scrollVert', 
        speed:   2500, 
        timeout: 1, 
        pager:  '#nav2'
    }); 
});
