$(document).ready( function()
{ 
	var INFO_BOX_COOKIE_NAME = 'about-box-state';
	$('button').customButton();
	$('#info-box-close').toggle( function()
	{ 
		$('#info-box').slideUp( 'fast', function()
		{ 
			$('#info-box-close span').text('deals');  
			$('#info-box-close img').attr('src', BASE_URL + "/images/white-arrow-down.png");
			document.cookie = 'about-box-state=closed';
		});
		
	}, function()
	{ 
		$('#info-box').slideDown( 'fast' );
		$(this).find('span').text('close'); 
		$(this).find('img').attr('src', BASE_URL + "/images/white-arrow-up.png");
		document.cookie = 'about-box-state=closed';
	} );
	cookies = document.cookie.split(";");
	for( i in cookies )
	{
		currentCookie 	= cookies[i].split("=");
		cookieName 		= currentCookie[0].replace(/^\s+|\s+$/g, '');
		if( $.trim(cookieName) != INFO_BOX_COOKIE_NAME )
			continue;
		cookieValue		= unescape( currentCookie[1].replace(/^\s+|\s+$/g, '') );
		if( $.trim(cookieValue) == 'closed' )
		{
			$('#info-box').hide();
			$('#info-box-close').click();
			break;
		}
	}
	
	var colLeft 	= $('#content .col.left');
	var colRight 	= $('#content .col.right');
	if( colLeft.length==1, colRight.length==1 )
	{
		var heightLeft 	= colLeft.height();
		var heightRight	= colRight.height();
		if( heightLeft > heightRight )
		{
			colRight.height( heightLeft );
			return;
		}
		colLeft.height( heightRight );					
	}
	
});
