jQuery(function($){						   
	$('#otherLink').click(function(){
		var offset = $(this).offset();
		
		$('#otherBrands').css({
			top: (-1 * $('#otherBrands').height() + 15) + 'px', //Math.floor(offset.top - ($('#otherBrands').height() * 0.75)) + 'px',
			left: 0 //Math.floor(offset.left) + 'px'
		}).show();
		
		//$('#otherBrands').show();
	});
	
	$('#otherBrands').hover(
		function(){
			$(this).show();
		},
		function(){
			$(this).hide();
		}
	);
	
	$('#brandPopupLink').click(function(event){
		window.open(
			'http://www.starwoodhotels.com/whotels/common/components/content/global_footer_brand_popup.html',
			'POPUP',
			'width=560, height=710, status=0, toolbar=0, location=0, menubar=0, directories=0, resizeable=0, scrollbars=0'
		);
	});
	
});
