navHover = function() {
	var lis = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

$(function(){
//  Cufon.replace(".europe");
  $('marquee').marquee();
  
  $(".menu li,.menu_content li,.submenu").hover(function(){
//    $(this).addClass('active');
    $(this).addClass('hover');
//    $(".divsubmenu").each(function() {  $(this).hide(); });
    $(this).find('div').show('fast');

  },function(){
  //  $(this).removeClass('active');
    $(this).find('div').hide();
    $(this).removeClass('hover');
  });



});

$(document).ready(function () {




$('.thumb').mouseover(function() { 
 $("#img_main").attr("src","mini.php?f="+$(this).attr("id")+"&s=2");
});

$('.title').mouseover(function() { 
    $(this).css("color",'#FF4500'); });
$('.title').mouseout(function() { 
    $(this).css("color",'#001B35'); });

    
$('.smallimg').mouseover(function() { 
 $(".bigimg").each(function() {  $(this).hide('slow'); });
 $(this).prev('img').show('slow');
});

$('.bigimg').mouseout(function() { 
 $(this).hide('slow');
});


        $('#kyhnya a').lightBox();

});

