$(document).ready(function(){	
	$('li.lvl1').hover(
		function() {
			$(this).children().css("display","block");
			$(this).children('a.lvl1Link').css({
				'border-top':'4px solid #ed171f',
				'padding-top':'0px'
			});
		},
		function() {
			$('ul.menulvl2').css("display","none");
			$(this).children('a.lvl1Link').css({
				'border-top':'0px',
				'padding-top':'4px'
			});
		}
	);
	$('ul.menulvl2').hover(
		function() {
			$(this).parent().children('a.lvl1Link').css({
				'border-top':'4px solid #ed171f',
				'padding-top':'0px'
			});
		},
		function() {
			$(this).parent().children('a.lvl1Link').css({
				'border-top':'0px',
				'padding-top':'4px'
			});
		}
	);	
	
	$("#q").click(function () {
        $(this).val('');
    });
	
	Rovitex.initFancy();
	
	/* Rovitex.initCategory(); */
	
	//Rovitex.initHistory();
	
});

