$(document).ready(function(){
	$('input[type=text]').addClass('textbox');
	$('#sidenav>li').mouseover(function(){
		$(this).find('.subContent').show();
		var src='/cms/fragments/scwest_css/images/sidenav/'+$(this).attr('title')+'-hover.jpg';
		$(this).find('a:first').find('img').attr('src',src);
	}).mouseout(function(){
		$(this).find('.subContent').hide();
		var src='/cms/fragments/scwest_css/images/sidenav/'+$(this).attr('title')+'.jpg';
		$(this).find('a:first').find('img').attr('src',src);
	});
	
	$('.dropdownContent').each(function(){
		$(this).find('a:last').addClass('last');
	});
	$('.topnavDropdown').hide();
	$('#topnav li.mainItem').mouseover(function(){
		$(this).css({"position":"relative","z-index":"99999"});
		$(this).find('.topnavDropdown').show();
	});
	$('#topnav>li').mouseout(function(){
		$(this).css({"position":"relative","z-index":"99"});
		$(this).find('.topnavDropdown').hide();
	});
	
	$('#exhibitorsList li').mouseover(function(){
		$(this).addClass('hover');
	}).mouseout(function(){
		$(this).removeClass('hover');
	});
	
});