var $j = jQuery.noConflict();
	$j(function(){
		
		$j(".drop_btn").hover(function () {
			$j(this).children(".drop").show();
		}, function () {
			$j(this).children(".drop").hide();
		});
		$j(".products li").hover(function () {
			$j(this).find(".product_info").show();
		}, function () {
			$j(this).find(".product_info").hide();
		});
		
		$j(".group_select").change(function () {
			$j(this).siblings().children("li").hide();
			$j("#prod" + $j(this).children("option:selected").attr("val")).show();
		});
	});
