var d = document;

function BlacknWhite (options){
	options = jQuery.extend({minor : 9}, options);
       	
	if($.browser.msie && jQuery.browser.version < options.minor) {
		//$("html").css("filter","gray"); 
        $('#fuck_ie').show();
    }
}


$(d).ready(function(){ 
    BlacknWhite();
}); 

function getXMLHTTP() {
	var req;

	if (window.XMLHttpRequest)		
	req = new XMLHttpRequest();
	else if (window.ActiveXObject) 		
	{
   		try {
       		req = new ActiveXObject('Msxml2.XMLHTTP');  
   			} catch (e){}									 
   		try {											
       		req = new ActiveXObject('Microsoft.XMLHTTP');
   		} catch (e){}
	}
		
	return req;
}	
