function Zebra() {
	$('table.catalog tr:odd').addClass('odd');
}
function Navigate(){
    $('#navigate ul li, .topnavi ul li').hover(function(){
        $(this).children('ul').addClass('over');
    },function(){
        $(this).children('ul').removeClass('over');
    })
} 
function TopJ() {
    $('a#topJ').click(function(){
        scroll(0,0);
        return false;
    })
}
function Images() {
	$('#inform img, #actual img').each(function(){
		var obj = $(this);
		if (obj.width() > 169)
			obj.width(169);
	});
    $('.nws img').each(function(){
		var obj = $(this);
		if (obj.width() > 208)
			obj.width(208);
	});
}

$(document).ready(function(e) {
	try {
		Navigate();
		Images();
		TopJ();
		Zebra();
	} catch(e) {
		alert(e);
	}

});

