// JavaScript Document

$(document).ready(function() {

	
	
	
	//detect IE6
	if($.browser.msie){
		if (!$.cookie('ypgoptoutIE6detect')) {
			var version = $.browser.version;
			if (version.match(/^6/)) {
				$.cookie('ypgoptoutIE6detect', '1');
				window.location.href = '/delivery/iedetect.php';
			}
		}
	}
});

