$(document).ready(function() {

	var filePrefix = "";
	if(window.location.pathname.indexOf("work") > 0) {
		filePrefix = "../";		
	}


	$(".industryspot").hover(function() {
		$(this).children(".previewbox").html($(this).children(".previewboxContent").html());
		$(this).children(".previewbox").animate(
			{
				width: 150,
				height: 100,
				marginTop: 98
			
			}, 50);
		return false;
	}, function() {
		$(this).children(".previewbox").html("<img src='" + filePrefix + "img/previewbox.png' />");
		$(this).children(".previewbox").animate(
			{
				width: 25,
				height: 25,
				marginTop: 173
			
			}, 50);
		return false;
	});

});
