$(document).ready(function() {
	
	$("#topcats img, #menu img").fadeTo(1, .75);
	$("#topcats img, #menu img").mouseover(function() {
		if($(this).queue().length<3)
			$(this).fadeTo("fast", 1);
	});
	$("#topcats img, #menu img").mouseout(function()  { $(this).fadeTo("fast", .75); });

	
	$("a[rel=external]").bind('click', function(e) {
		window.open($(this).attr('href'));
		return false;
	});
	$("a.fullscreen").bind("click", function() {
		document.getElementById("video").width = "640px";
		document.getElementById("video").height = "480px";
		$("td.catalog_category_desc").hide();
		$(this).css("display", "none");
		$("a.smallscreen").css("display", "inline");
		return false;
  		}
	);
	$("a.smallscreen").bind('click', function(e) {
		document.getElementById("video").width = "240px";
		document.getElementById("video").height = "180px";
		$("td.catalog_category_desc").show();
		$(this).css("display", "none");
		$("a.fullscreen").css("display", "inline");
		return false;
		}
	);
	$('marquee').marquee().bind("mouseover", function () {
        $(this).trigger('stop');
	}).bind("mouseout", function () {
        $(this).trigger('start');
    });

});