$(document).ready(function(){   
	
	$("tr.szinkod > td").each(function(){
        $(this).mouseover(function(){
            $(this).css("background","#2E1D16").css("border","1px solid #4F3E29");    
        }).mouseout(function(){
            $(this).css("background","#170C07").css("border","1px solid #170C07");    
        });
	});

	$(".ref-group").each(function(){
        $(this).mouseover(function(){
            $(this).css("background","#2E1D16").css("border","1px solid #4F3E29");    
        }).mouseout(function(){
            $(this).css("background","#170C07").css("border","1px solid #170C07");    
        }).click(function(){
            window.location.href="referenciak/" + $(this).attr("id");  
        });
	});
	
	if ($('#ss').attr("id") == "ss")
	{
    	$('#ss').crossSlide({
          sleep: 2,
          fade: 1
        }, img_array
        );
    }



});
