$(document).ready(function() {
	// fake referrer for testing purposes
	// var referrer = 'http://www.google.ca/search?hl=en&client=firefox-a&rls=org.mozilla:en-GB:official&hs=ER6&q=xbox+360';
	// detect Google search URL
//	if(document.referrer.search(/\.google\.[^\/]+\/.*(\?|\&)q=/i) != -1 && CookieManager.getCookie('hideBtmBar') === null) {
	if(true || CookieManager.getCookie('hideBtmBar') === null) {
		// construct bottom bar
		var searchbox = $('#btmsearch');
		var termstext = $('#searchterms');
		$('#btmshadow').appendTo($('body'));

		$('#btmclose').click(function() {
			$('#btmshadow').hide();
			CookieManager.setCookie('hideBtmBar','true');
			return false;
		});

/* SHOW BOTTOM BAR AUTOMATICALLY -- REMOVE THIS IF SEARCH CODE REINSTATED */
		if($('#btmshadow').attr('display') != 'none') {
			$('#btmshadow').slideDown('normal', function() {
				$('body').css('padding-bottom', $('#btmbar').outerHeight());
			});
		}
/* END SHOW BAR */

	}	
});

