$(function() {

      $('li.dropdown').hover(
        function () {
          $('ul.the_menu', this).stop(true, true).slideToggle(0);
          $("li.dropdown a", this).addClass("selected");
        },
        function () {
          $('ul.the_menu', this).stop(true, true).slideToggle(0);
          $("li.dropdown a", this).removeClass("selected");
      });


      $('a.dropdownlink').click(function () {
        return false;
      });
	  
	 $('#productsTable tr:odd').addClass("odd");

	 
	 $(".techInfo").fancybox({
				'width'				: 600,
				'height'			: 500,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
		
	 $(".terms").fancybox({
				'width'				: 600,
				'height'			: 500,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});	
	 

});

