
/* misc inits */

$(document).ready(function(){

	//navs first/last child (for IE)
	$('ul.n-footer li:last-child').addClass('last-child');
	
	//top menu
	$('div.b-topnav div.b-menu-item').hover(
		function() { $(this).addClass('over'); $(this).find('ul.flyout-menu').show();},
		function() { $(this).removeClass('over'); $(this).find('ul.flyout-menu').fadeOut('fast');}
	);
	$('ul.flyout-menu li').hover(
		function() { $(this).addClass('over');},
		function() { $(this).removeClass('over');}
	);	
	
	//hovers
	$('div.b-login').hover(
		function() { $(this).find('div.b-title').addClass('over'); $(this).find('div.b-login-lightbox').show();},
		function() { $(this).find('div.b-title').removeClass('over'); $(this).find('div.b-login-lightbox').fadeOut('fast');}
	);

});