jQuery(function($){
	$('a[label]').mouseover(function(){
		var self = $(this);
		var lab = self.attr('label');
		var wrp = $('div.c_lft');
		
		wrp.get(0).className = 'c_lft '+lab;
		
		return false;
	}).click(function(){
		return false;
	});
	$('li[for]').mouseover(function(){
		var self = $(this);
		var foo = self.attr('for');
		var wrp = $('div.cnt');
		
		wrp.get(0).className = 'cnt '+foo;
		if(foo=='buyer_4')
			self.addClass('thover').siblings().removeClass('hover thover');
		else
			self.addClass('hover').siblings().removeClass('hover thover');
		
		return false;
	});
	$('a[show]').mouseover(function(){
		var self = $(this);
		var show = self.attr('show');
		var wrp = $('#note');
		
		wrp.get(0).className = 'cur_'+show;
		return false;
	});
	$('a[href="show:categories"]').click(function(){
		return false;
	});
	$('li[rel="showcategories"]').hover(function(){
		var p = $(this);
		p.addClass('showcate');
	}, function(){
		var p = $(this);
		p.removeClass('showcate');
	});
	//$('#categories_menu').mouseout(function(){$(this).hide()});
});
