// JavaScript Document

// Make sure the document is ready
$(document).ready(function() {
	
	/**
	* Adds the IE6 warning to the document
	*/
	if (navigator.userAgent.toLowerCase().indexOf('msie 6') != -1) {
		
		$("body").prepend("<div id=\"ie6-warning\"></div>");
		$("#ie6-warning").load("/templates/default/templates/custom/ie6.php");
		
	}
	
});
