// Document load actions
$(document).ready(function(){
	// Detect if the browser is Chrome
	var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );
		
	// Get cookie, show by default, render nothing if cookie set as 'hideWarning'
	// if($.cookie('pdfWarning') != 'hideWarning' && is_chrome == true){
	if($.cookie('pdfWarning') != 'hideWarning'){
		$.cookie('pdfWarning', 'showWarning', {expires: 5});
		$('#thecontent').prepend('<div id="hideWarning"><em>Please note: Google Chrome may not support PDF documents correctly. Right click and "Save Link As" to view PDF documents</em> - Click to hide this message</div>');
	}
	
	//if($.cookie('pdfWarning') == 'hideWarning' && is_chrome == true){
	if($.cookie('pdfWarning') == 'hideWarning'){
		// $('#thecontent').prepend('<div id="clearWarning">Clear</div>');
	}
		
	// Hide warning, reset cookie
	$('#hideWarning').click(function(){
		//window.alert('hideWarning');
		$.cookie('pdfWarning', 'hideWarning', {expires: 14});
		$('#hideWarning').fadeOut('500');
	});
		
	$('#clearWarning').click(function(){
		window.alert('clearWarning');
		$.cookie('pdfWarning', null);
		$('#clearWarning').fadeOut('500');
	});
})
