/* BON JOVI */
/* Browser Detection
----------------------------------------------------------------------------- */


	var unsupported = (navigator.userAgent.match('Firefox/3.0') || navigator.userAgent.match('MSIE 6') ? true : false);


/* POST PAGE LOAD FUNCTIONS
----------------------------------------------------------------------------- */

/*	
	$(document).ready(function() {

		$.getScript('http://cdn.sparkart.net/bonjovi/clique/javascripts/jquery/jquery_plugins/jquery-cookie.js', function() {

			if ($cookie('upgrade').length > 0 && $cookie('upgrade') == 'delayed') {
			
			} else if (unsupported) {
	
				window.location = '/unsupported';
			
			}

		});

	});
	
*/
	
	$(window).load(function() {
	
		if (window.location.toString().match('unsupported')) {

			$('a.continue').click(function() {
			
				$.cookie('upgrade', 'delayed', { expires: 1 });
				window.location = $(this).attr('href');
				return false;
			
			});			
		
		}
	
	});
