$(document).ready(function() {

	$('#contentWrapper','#topCap', '#siteFooter').supersleight({shim: 'assets/templates/bettertrading/img/structure/transparent.gif'});

	if ($("ul.LSM_0").length > 0) {
		$("ul.LSM_0").treeview({
			collapsed: false
		});
	}

		$('#primaryNav ul li')
		.hover(
			function(){
				// OVER
				if($(this).children('ul').length > 0) {
					$(this).siblings().find('> ul').hide();
					$('> ul', $(this)).show();
				}
			},
			function(){
				// OUT
				
				if ($(this).hasClass('active')) {
					
				} else {
					$('> ul', $(this)).hide();
				}
			}
		);
		
		$('#primaryNav').mouseleave(function() {
			$('> ul', 'li.active').show();
		});
		
		$('#primaryNav li.active > ul').show();	
	
});

