$(function() {
	try {
		$("#catalogo").msDropDown({mainCSS:'dd2'});
		$("#ver").html($.msDropDown.version);
	} catch(e) {
		alert("Error: "+e.message);
	}
	$(".orange_box").hover(function(){
		$(this).stop().fadeTo("fast",1);
	}, function(){
		$(this).stop().fadeTo("fast",0);
	}).click(function(){
		url = $(this).find("a").attr("href");
		window.location = url;
	});
})
