$(document).ready(function(){

	$('.submenu dt').click(function(){
		if($(this).parent().find('dt').is('.active')){
			_color=$(this).parent().find('dt.active').attr('_clr');
			$(this).parent().find('dt.active').attr('style','border-color:'+_color);
		}

		$(this).siblings('dt').removeClass('active');
		$(this).addClass('active');

		$(this).parent().find('dd').hide(500);
		$(this).next('dd').show(500);

		_color=$(this).attr('_clr');
		$(this).attr('style','border-color:'+_color+';background:'+_color);
	});

	$('.submenu dt').hover(
		function(){
			_color=$(this).attr('_clr');
		 	$(this).attr('style','border-color:'+_color+';background:'+_color);
		},
		function(){
			if (!($(this).is('.active'))){
				_color=$(this).attr('_clr');
		 		$(this).attr('style','border-color:'+_color);
			}
		}
	);

	/*----------------- BUBBLE -----------------*/

	var bubble=document.getElementById('bubble');

	$('table.prodtable td').mouseover(function(){
			pic_src=$(this).parent().find('img.bubble').attr('rel');
			$('#bubble img').attr('src',pic_src);
			$('#bubble').show();
	}).mousemove(function(kmouse){
			$('#bubble').css({left:kmouse.pageX+20+'px',top:kmouse.pageY-bubble.offsetHeight+'px'});
	}).mouseout(function(){
			$('#bubble').hide();
	});

});