$(function() {
	$('.subMenu').hover(function() {
		$(this).children().stop(true,false).animate({marginTop:'0px'}, 600);
	}, function() {
		var menuHeight = $(this).find('ul').height() + 75;
		$(this).children().stop(true,false).animate({marginTop:'-' + menuHeight}, 600);
	});
	$('.subMenu > a').live('click', function() {
		$(this).parent().find('ul').trigger('hover');
	});
	$('#hero').bxSlider({
		mode: 'fade',
		auto: true,
		controls: false,
		autoHover: true,
		pause: 8000,
		speed: 500,
		pager: true
	});
});
