jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery("#color-button").hover(function(){ jQuery("#color-list").show();},function(){jQuery("#color-list").hover(function(){jQuery("#color-list").show();},function(){jQuery("#color-list").hide();});});
	jQuery("#active-language").hover(function(){ jQuery("#language-list").show();},function(){jQuery("#language-list").hover(function(){jQuery("#language-list").show();},function(){jQuery("#language-list").hide();});});
	jQuery("#more-menu").hover(function(){ jQuery(".morein").show();},function(){jQuery(".morein").hover(function(){jQuery(".morein").show();},function(){jQuery(".morein").hide();});});
	jQuery("#user-menu").hover(function(){ jQuery(".usertools").show();},function(){jQuery(".usertools").hover(function(){jQuery(".usertools").show();},function(){jQuery(".usertools").hide();});});

	jQuery('.styleswitch').click(function()
	{
		jQuery.cookie('style', this.getAttribute("rel"),{ path: '/' });
		location.reload();
	});
							   
});
