// this file is used to as a hover function in the apps folder. DON'T delete this file.

$(document).ready(function(){
  $('img.thumbnail60-300').hover(
	function(){
		$('img#picture60-300').attr('src',$(this).attr('src').replace('60/','300/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail60-350').hover(
	function(){
		$('img#picture60-350').attr('src',$(this).attr('src').replace('60/','350/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail60-600').hover(
	function(){
		$('img#picture60-600').attr('src',$(this).attr('src').replace('60/','600/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail75-300').hover(
	function(){
		$('img#picture75-300').attr('src',$(this).attr('src').replace('75/','300/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail75-350').hover(
	function(){
		$('img#picture75-350').attr('src',$(this).attr('src').replace('75/','350/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail75-400').hover(
	function(){
		$('img#picture75-400').attr('src',$(this).attr('src').replace('75/','400/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail75-500').hover(
	function(){
		$('img#picture75-500').attr('src',$(this).attr('src').replace('75/','500/'));
	},
	function(){
		window.status = '';
	}
  );
  $('img.thumbnail95-350').hover(
	function() {
	    $('img#picture95-350').attr('src', $(this).attr('src').replace('95/', '350/'));
	},
	function() {
	    window.status = '';
	}
  );
  $('img.thumbnail95-500').hover(
	function(){
		$('img#picture95-500').attr('src',$(this).attr('src').replace('95/','500/'));
	},
	function(){
		window.status = '';
	}
  );
});
