$(document).ready(function() {
	$(function() {$('#slide-images')
	.cycle({ 
	    fx:     'fade', 
	    speed:  1500, 
	    timeout: 2500, 
	 	pause:   1
	});});
	
	$(function() {$('#product_imgs')
	.cycle({ 
	    fx:     'fade', 
	    speed:  2000, 
	    timeout: 2500, 
	 	pause:   1
	});});
	
    // to store it in a variable
	var loc = window.location.pathname;
	$("#nav a[href='" + loc + "']").addClass("here");


	$("ul.drop").hide();


	$("a.drop_trig").click(function(){

	  $(this).next("ul").slideToggle("slow");
	  $(this).toggleClass("active");
		return false;
	});


	$(function(){
	  $("tbody.tiger tr:even").addClass("odd");
	});
});

