jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

function startupNewsScroller(o) {
	$('#scroller').newsScroller(o);
}

function startupCatsScroller(o) {
	$('#scroller2').newsScroller(o);
}

$(document).ready(function() {
	Initialization();
	
	$('a#toggleProductTables').click(function() {
		$('div#productTables').toggle();
		return false;
	});	

	$("ul.Menu li").hover(function() {
        $('ul', this).show();
    }, function() {
        $('ul', this).hide();
    });
	
});
