$(document).ready(function() {
    
    if($.browser.name == "msie" && $.browser.versionNumber < 7){
        DD_belatedPNG.fix('.topmenu li a, .langs, .box .arrow, .box .telefon, .button a, .button a span');
        $(".topmenu > li").hover(
          function () {
            $(this).addClass("hover");
          },
          function () {
            $(this).removeClass("hover");
          }
        );
        
    }
    
    if($.browser.name == "firefox"){
        $(".submit input").css("padding-bottom","3px");
    }
    
    $("#content img[align='left']").css("margin-right","10px");
    $("#content img[align='right']").css("margin-left","10px");
    $("#content table").attr("cellspacing","0");
/*
    $("#content table tr").each(function(){
        $(this).find("td:last").css("border-right","0");
    });
    $("#content table tr:last td").css("border-bottom","0");
*/        
    $("#tabs").tabs({
        cookie: {
            expires: 1
		},
		fx: { opacity: 'toggle' }
	}); 
	
	$('#slider').cycle({
        fx: 'fade',
        timeout: 3000,
        speed: 700,
        pager: '.slider-wrapper ul',
        activePagerClass: 'activeSlide'
    });
    
    $('.slider-area ul li a').click(function(){
        $(this).blur();
    });
    
});  
