$(document).ready(function() {
	/* IE6 - fix blikajicich backgroundu */
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		eval("try {document.execCommand('BackgroundImageCache', false, true);} catch(e) {}");
	}
});

$.fn.ie6hover = function(o) {
	var defaults = {};
	o = $.extend(defaults, o);

	return this.each(function() {
		var me = $(this);

		me.hover(function() {
			me.addClass("hover");
		},function(){
			me.removeClass("hover");
		});
	});
};

$(document).ready(function() { 
	$("ul li.clr").click(function(){
	var url = $(this).find("a").attr('href'); 
		window.location = url;
	}); 
});
