function fadeFeatured(){
	
	var fadeCount = 1;
	$('#patch-work-list li').delay(1000).each(function(){
	
		$(this).delay(fadeCount*100).animate({
			opacity: 1,
			top: '0px'
		}, 500);
		
		fadeCount++;
										   
	});
	
	$('#liner').animate({
	
		opacity: 1,
		top: '0px'
						
	}, 500);
	
	$('#work-quote').delay(200).animate({
	
		opacity: 1,
		top: '0px'
						
	}, 500);
	
}

$(document).ready(function(){
						   
	$('#patch-work-list li a').hover(function(){
	
		$(this).children('.featured-thumb').addClass('hover');
										   
	},function(){
		
		$(this).children('.featured-thumb').removeClass('hover');
	
	});
	
	$('#bg').bgResize({
		imagewidth:1680,
		imageheight:1007
	});
	
	//setTimeout("fadeFeatured()", 300);
	
});