jQuery(function(){
	jQuery('#mi').nivoSlider();

	jQuery('.catalogue a.top').click(function(){
		if(!jQuery('ul.sub', jQuery(this).parent()).length)
			return true;
		if(jQuery(this).hasClass('top_active')){
			jQuery('ul.sub', jQuery(this).parent()).slideUp(300);
		}
		else{
			jQuery('ul.sub', jQuery(this).parent()).slideDown(300);
		}
		jQuery(this).toggleClass('top_active');
		//return false;
	})

	jQuery('#product-thumbs a').click(function(){
		jQuery('#product_big_img').html('<img src="' + jQuery(this).attr('href') + '" alt="" />');
		return false;
	})
})
