
jQuery(document).ready(function() {
								
	jQuery(".shoes-boxnew").equalHeights();
	
	//jqzoom used to zoom in on products on shopexd.asp
	var jqoptions = {
	    zoomWidth: 400,
	    zoomHeight: 400,
		xOffset: 10,
		yOffset: 0,
		title:false,
		lens:false,
		position: "right"
		};

	jQuery(".jqzoom").jqzoom(jqoptions);
	
	jQuery('#sendfeedback').contactable();
	
	jQuery('#mycarousel').jcarousel({
        // Configuration goes here
    });
});




function toggleMe(a){
	  var e=document.getElementById(a);
	  //if(!e)return true;
	  if(e.style.display=="none"){
		e.style.display="block"
	  } else {
		e.style.display="none"
	  }
	  //return true;
	}

function checkjavascriptstatus(){
	   var checkingurl="shopcheckjavascript.asp";
	   var pars = '';
	   var url = checkingurl + '?' + pars;
	   new Ajax.Request(url, {method: 'post',
					   onSuccess: function(transport) {
					   }
					   }); 
	}

