jQuery.noConflict();
jQuery(document).ready(function(){

jQuery("a#login").css("cursor","pointer");

jQuery("div#hider").hide();

jQuery("a#login").click(function(){
	jQuery(this).parents("fieldset").children("div#hider").slideToggle("fast");
	return false;
});

jQuery("a.wsm").css("opacity","0.5");

jQuery("a.wsm").hover(function() {
	jQuery(this).css("opacity","1");
},function() {
	jQuery(this).css("opacity","0.5");
});
/*
jQuery("a.quicklink").hover(function() {
	jQuery("a.quicklink").css("opacity","0.5");
	jQuery(this).css("opacity","1");
},function() {
	jQuery("a.quicklink").css("opacity","1");
});
*/
jQuery("table tr:odd td").addClass("odd");

//jQuery("ul#subnav li").children("ul").hide();

//jQuery("ul#subnav li a").click(function(){
	jQuery(this).parent("li").children("ul").slideToggle("fast");
//});


});
