// translate

function brands_button(){

	$('#brands-button').hover(
		function(){
			var offset = $(this).offset();
			$('#brands-hover').css({'top': (offset.top+30), 'left': (offset.left)});
			$('#brands-hover').show();
		},
		function(){

			$('#brands-hover').hide();
		
		}
	);
	$('#brands-hover').hover(
		function(){
			$(this).show();
		},
		function(){
			$(this).hide();
		}
	);
	
}
$(document).ready(function(){
						  
	brands_button();
						  
});