// For Additional Product Images Scroll Bar 
var speed = 5;
var grap  = 175;

$(function() {
	
	$("ul.level1 > li > span > a:even").addClass("navEven");
	$(".column_display").eq(1).css({ 'margin' : '0 2px' });
	
	
	$("<div class='clearBoth'></div>").insertBefore('#loginDefault .clear');
	$("#loginDefault .clear").removeClass("clear");
	

$("#menu li").hover(function() {
  $(this).find("ul").css({ 'left' : 0 });
},function() {
  $(this).find("ul").css({ 'left' : '-9999em' });
});

$("#cycle").cycle();

});


