$(function() {
	$('.scrollBox').jScrollPane({
		verticalDragMinHeight: 46,
		verticalDragMaxHeight: 46
	});
	
    $('#slider1').bxSlider({
    	displaySlideQty: 3,
    	moveSlideQty: 1
    });
    
	$('.featureItem').hover(function() {
		$(this).find('.hoverGrunge').each(function(i) {
			$(this).stop(true, true).fadeIn("medium");
		});
		$(this).find('.overlayThis').each(function(i) {
			$(this).stop(true, true).animate({bottom: "0"}, 250);
		});
	}, 
	function() {
		$(this).find('.hoverGrunge').each(function(i) {
			$(this).stop(true, true).fadeOut("medium");
		});
		$(this).find('.overlayThis').each(function(i) {
			$(this).stop(true, true).animate({bottom: "-40"}, 250);
		});
	});	
});
