$(document).ready(function() {
	$(document).bind('cbox_closed', function(){
		$('.hideOnBox').show();
	});
	$(document).bind('cbox_open', function(){
		$('.hideOnBox').hide();
	});
	$(document).bind('cbox_complete', function(){
		$('.hideOnBox').hide();
	});

	$('input:not(.noExample,[type*=file],[title=]),textarea:not(.noExample,[title=])').example(function() {
		return $(this).attr('title'); 
	},{
		className: 'example'
	});
	$('.postalCode').blur(function() {
		$('#city').attr('value',getCityFromPostalCode($(this).attr('value')));
	});
});

docutitle = document.title;
var oriBg = $('body').css('background');
function goGoogleMode() {
	$('#overlay').show();
	$('#container').hide();
	$('#colorbox').hide();
	$('#cboxOverlay').hide();
	$('#cboxWrapper').hide();
	$('#cboxWrapper').hide();
    $('body').css('background','#FFF');
	document.title = 'Google';
	return false;
}
function noGoogleMode() {
	$('#overlay').hide();
	$('#container').show();
	$('#colorbox').show();
	$('#cboxOverlay').show();
	$('#cboxWrapper').show();
    $('body').css('background',oriBg);
	document.title = docutitle;
	return false;
}
