var $j = jQuery.noConflict();

$j(document).ready(function($){
	//$('#primaryNav').css('zIndex','2');
	//$('.mainContent').css('zIndex','1');
	$('ul#primaryNav li').hover(
		function(){
			$(this).addClass('hovered');
			$(this).children('ul').show();
		},
		function(){
			$(this).removeClass('hovered');
			$(this).children('ul').hide();
		});
	$('#productText table tr:odd').addClass('tr-odd');
	$('#productText table tr:even').addClass('tr-even');
	
		
	$('a.cta>img').hover(
	function(){
		$(this).stop().animate({paddingLeft:'20px'}, 100);
	},function(){
		$(this).stop().animate({paddingLeft:'0'}, 500);
	});
	$('#header').css('zIndex','2000');
	$('.mainContent').css('zIndex','1');
	/* !Email a Friend Social Button ============================== */
	$j(".socialForm").colorbox({width:"35%", height:"85%",iframe:true});
	$j(document).ready(function(){
 	$j("#incomingLink").val(document.referrer);
	});

});


$j(function() {
	$j('div.lbox a').lightBox();
});

// Get Date For Form 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
