$(document).ready(function(){
	
	$('#brand-dropdown-image').unbind();
	
	$('#brand-dropdown-image').bind('click', function(event){
		
		$('#brands-wrapper').toggle();
		
	});
	
	$('#RightColumn').unbind();
	
	$('#RightColumn').bind('mouseover', function(event){
		
		$('#brands-wrapper').hide();
		
	});
	
	$('#LeftColumn').unbind();
	
	$('#LeftColumn').bind('mouseover', function(event){
		
		if ($(event.target).attr('id') != 'brands-wrapper' && !$(event.target).parents('#brands-wrapper').length) {
			$('#brands-wrapper').hide();
		}
		
	});
	
	$('#Header').unbind();
	
	$('#Header').bind('mouseover', function(event){
		
		$('#brands-wrapper').hide();
		
	});
	
});
