// JavaScript Document

	$(document).ready(function(){
		
		
	$('div.featured_list').hover(function() {
			$(this).highlightFade({
				speed: 200,
				start: 'white',
				end: 'grey'
			});
		}, function() {
			$(this).highlightFade({
				speed: 200,
				start: 'grey',
				end: 'white'
			});
		});

		
		
		
        //$('#header').hide().fadeIn(2500);
        $('#headerimg').hide().delay(800).fadeIn(100);        
        $('#headerimg2').hide().delay(2000).fadeIn(1500);
		
		  $(".cover").delay(3500);
		  $(".cover").animate({"left": "-=335px"}, 1500, function() {

							//Partial Sliding (Only show some of background)
						$('.boxgrid.peek').hover(function(){
							$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
						}, function() {
							$(".cover", this).stop().animate({left:'337px'},{queue:false,duration:300});
						});

		  });
		

	});

