// Custom scrollbar
var content;
$(document).ready( function () {
	content = $('div.innerContent');
});

// SHITTY BROWSER DETECTION
// *******************************************************************************
$(document).ready( function () {
					 
	// Your browser is IE6 or less and it sucks alert
	if ($.browser.msie && $.browser.version < 7) {
	   $(".copyright").append('<br /><small>Ever think of upgrading your browser to <a href="#" title="Download IE7">Internet Explorer 7</a> or <a href="#" title="Download Firefox">Firefox</a>?</small>');
	}

});
