// JavaScript Document
function changeMeta(id) {
	$(".custom_meta_desc").hide();
	$("#"+id).show();
}


 $(document).ready(function() {
   $("a.higherQuantity").click(function() {
	 	var qty = document.getElementById('wpsc_quantity_update');
		qty.value++;
   });
   $("a.lowerQuantity").click(function() {
	 	var qty = document.getElementById('wpsc_quantity_update');
		if(qty.value > 1) qty.value--;
   });
   $("ul.catMenu ul").hide();
   $('li.active ul').show();
   $('li.active').parent().show();
   $('ul.leftMenu ul').hide();
   $('li.current_page_item ul').show();
   $('li.current_page_ancestor ul').show();
 });
