
//CONTROLLING EVENTS IN jQuery
//$(document).ready(function(){
	var COOKIE_NAME = 'splash-page-cookie';
	$go = $.cookie(COOKIE_NAME);
	if ($go == null) {
		$.cookie(COOKIE_NAME, 'test', { path: '/', expires: 6 });
		jQuery('head').fadeTo(1000, 0, function() {
			tb_show("Welcome to BrownTown Recording","#TB_inline?height=408&width=953&inlineId=splashpopover");
		});
	}
	else {
	}

//});





