var $j = jQuery.noConflict();

	$j(function() {
		$j("a.lightbox").lightBox();
	});

$j(document).ready(function(){
	
	$j('#primaryNav ul li').hover(function(){
		$j(this).children('ul').show();
	}, function(){
		$j(this).children('ul').hide();
	});

	$j('body').css({opacity: .9999}); 

      $j(".content01").hide();
	  $j(".content02").hide();
	  $j(".content03").hide();


	$j(".cat01").hover(function() {
	  $j(".content01").animate({opacity: "show"}, "fast");
	  $j(".content02").animate({opacity: "hide"}, "fast");
	  $j(".content03").animate({opacity: "hide"}, "fast");
	}, function() {
	  //$j(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	  $j(".content01").animate({opacity: "hide"}, "fast");
	});

	$j(".cat02").hover(function() {
	  $j(".content02").animate({opacity: "show"}, "fast");
	  $j(".content01").animate({opacity: "hide"}, "fast");
	  $j(".content03").animate({opacity: "hide"}, "fast");
	}, function() {
	  //$j(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	  $j(".content02").animate({opacity: "hide"}, "fast");
	});

	$j(".cat03").hover(function() {
	  $j(".content03").animate({opacity: "show"}, "fast");
	  $j(".content01").animate({opacity: "hide"}, "fast");
	  $j(".content02").animate({opacity: "hide"}, "fast");
	}, function() {
	  //$j(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	  $j(".content03").animate({opacity: "hide"}, "fast");
	});
	
	
   $j(".prodFeatures ul").hide(); 
	
   $j(".prodFeatures").click(function(){
     $j(this).children("ul").slideToggle('fast');
   });
   
  
   $j(".prodFeatures").toggle(function(){
		$j(this).addClass("minus");
		}, function () {
		$j(this).removeClass("minus");
	});

	
});

// Get Date for processor.
var getDate=new Date()
var getYear=getDate.getYear()
if (getYear < 1000)
getYear+=1900
var getDay=getDate.getDay()
var getMonth=getDate.getMonth()+1
if (getMonth<10)
getMonth="0"+getMonth
var getCurrentDay=getDate.getDate()
if (getCurrentDay<10)
getCurrentDay="0"+getCurrentDay