/*  spezielle prototype erweiterungen für i4
 *
 *--------------------------------------------------------------------------*/

Object.extend(Prototype.Browser, {
    IE6: Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 6,
    IE7: Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 7,
    IE8: Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 8
});


function log(log) {
	
	if (window.console != undefined) {
		window.console.log('[i4-log]');
		window.console.log(log);
	}
		
};
