$(function(){
	/*
	 * Add onclick events for images so they simulate the link.
	 */
	$('.work li img').click(function(e){
		$href = $(this).parent().find('a:first').attr('href');
		window.location.href = $href;
	}).addClass('faux-button');
	$('.case-study-list li img').click(function(e){
		$href = $(this).parent().parent().find('a:first').attr('href');
		window.location.href = $href;
	}).addClass('faux-button');
	
	/*
	 * Add image changeovers
	 */
	$('.hoverbox').hover(function(){
		$image = $(this).find('img:first');
		$image.attr('src',$image.attr('data-img-src-alt'));
	},
	function(){
		$image = $(this).find('img:first');
		$image.attr('src',$image.attr('data-img-src'));
	});
})
