// $(document).ready(function() {
// 	$('.thumb img').hover(function() {
// 		var current_image = $(this).attr("src");
// 		var split_period_current_image = current_image.split(".");
// 		var current_active_image = split_period_current_image[0] + "_active.jpg";
// 		$(this).fadeTo('fast', 0, function() {
// 			$(this).attr("src", current_active_image).fadeTo('fast', 1);
// 		});
// 		
// 	}, function() {
// 		var current_active_image = $(this).attr("src");
// 		var split_active_image = current_active_image.split("_active");
// 		var current_image = split_active_image[0] + ".gif";
// 		$(this).fadeTo('fast', 0, function() {
// 			$(this).attr("src", current_image).fadeTo('fast', 1);
// 		});
// 	});
// });

$(document).ready(function() {
	$('.thumbOver').hover(function() {
	$(this).stop();
	$(this).fadeTo('400', 0);
	}, function() {
	$(this).stop();
	$(this).fadeTo('400', 1);
	});
	
	$('div#next').hover(function() {
		$(this).fadeTo('400', 0.5)
	}, function() {
		$(this).fadeTo('slow', 0)
	});
	
	$('div#previous').hover(function() {
		$(this).fadeTo('400', 0.5)
	}, function() {
		$(this).fadeTo('400', 0)
	});
	

});

// $(document).ready(function() {
// 	$('.thumbOver').hover(function() {
// 		$(this).animate({
// 			width: "70%"
// 		})
// 	}, function() {
// 		// Stuff to do when the mouse leaves the element;
// 	});
// });


// $('#workMain').hover(function() {
// 	$(this).fadeTo('400', 1)
// }, function() {
// 	$(this).fadeTo('400', 0.5)
// });
// 
// $('#work3').hover(function() {
// 	$(this).fadeTo('400', 1)
// }, function() {
// 	$(this).fadeTo('400', 0.5)
// });
// 
// $('#work2').hover(function() {
// 	$(this).fadeTo('400', 1)
// }, function() {
// 	$(this).fadeTo('400', 0.5)
// });
// 
// $('#work4').hover(function() {
// 	$(this).fadeTo('400', 1)
// }, function() {
// 	$(this).fadeTo('400', 0.5)
// });
//