if (!window.console) {
    var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
                 "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
    window.console = {};
    for (var i = 0; i < names.length; ++i)
        window.console[names[i]] = function() {};
}

var IE  = (navigator.appName == 'Microsoft Internet Explorer') ? true : false;



$(function(){
	
	//cornerzzz
	if (IE) {

		$('.nav li a').hover(function(){
			$(this).cornerz({
				radius : 7,
				background : '#1f1f1f',
				border : '#2f2e2d',
				borderWidth  : 1
			})
		}, function(){
			$(this).find('div').remove()
		})
	
		$('.used-equipment').cornerz({
			radius : 7,
			background : '#292929',
			border : '#3f3f3f',
			borderWidth : 1
		})
	}
	
	
})
