function openCoupon(coupon)
{
	window.open(coupon.href, 'coupon', 'status=0,toolbar=1,location=0,menubar=1,resizable=1,scrollbars=1,height=400,width=700');
	return false;
}

$(document).ready(function()
{
	$('#navigation ul li.hoverable').hover(
		function()
		{
			var offset = $(this).offset();
			var height = $(this).height();
			var bodyOffset = $('#content').offset();
			var width = $('#content').innerWidth() - 20;
			$(this).children('.submenu').css('top', (offset.top + height - 15) + 'px').css('left', (bodyOffset.left) + 'px').css('width', (width + 'px')).fadeIn('slow');
		},
		function()
		{
			$(this).children('.submenu').fadeOut('slow');
		}
	);
});