
	$(document).ready(function(){
		
		$('#slider').cycle({ 
			fx:     'scrollLeft', 
			timeout:  9000,
			speed:1000
		});
		
		$("#logo").hover(function() {
			$(this).animate({
				opacity:.6
			},50);
		}, function() {
			$(this).animate({
				opacity:1
			},50);
		});
	
		$(".teambox a").fancybox({});
		$(".pressbox a.pop").fancybox({});
		$(".featured_press a").fancybox({});
		
		pulse = 1;
		
		setInterval(function() {
        	
        	if(pulse == 1) {
				
				$('#gift_card a').css({ backgroundPosition: 'top left' });
				pulse = 2;
				
			} else 
			if(pulse == 2) { 
			
				$('#gift_card a').css({ backgroundPosition: 'center left' });
				pulse = 3;
			
			} else {
			
				$('#gift_card a').css({ backgroundPosition: 'bottom left' });
				pulse = 1;
			}
		   
		    
		}, 250);

	});
	
	function popWindow(theURL,winName,features) {
		window.open(theURL,winName,features);
	}


