$(document).ready(function() {
	$('.work').mouseover(function() {
		$('.workDescription').hide();
		$('.workBackground').hide();

		$(this).children('.workDescription').show();
		$(this).children('.workBackground').show();
	}).click(function() {
		var link = $(this).find('a');
		window.location = "/"+link.attr('href');
	});
});
