// For Additional Product Images Scroll Bar 
var speed = 5;
var grap  = 210;

$(function() {

	$("#menu li:last").attr("style","background:none;");
	
	var $shopButton = $('#categoriescss');
	var height = $shopButton.height();
	$shopButton.hide().css({ height : 0 });

	$("#shop_button").click(function () {

	if ($shopButton.is(':visible')) {
		$shopButton.animate({ height: 0 }, { duration: 150, complete: function () {
		$shopButton.hide();
	} });
	} else {
		$shopButton.show().animate({ height : height }, { duration: 150 });
	}
	
	return false;
	
	});
	});


