// JavaScript Document
$(document).ready(function() {
			
			$('#index_harnessed').mousedown(function() {
				$('#index_harnessed').css('background-image', 'url(idxImgWhole.jpg)');
			});
			
			$('#index_harnessed').mouseup(function() {
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
			});
			
			$('#imap_photos').mouseover(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgPhotos.jpg)');
			});
			
			$('#imap_photos').mouseout(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
			});
			
			$('#imap_main').mouseover(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgGuts.jpg)');
			});
			
			$('#imap_main').mouseout(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
		    });
			
			$('#imap_main2').mouseover(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgGuts.jpg)');
			});
			
			$('#imap_main2').mouseout(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
		    });
			
			$('#imap_main3').mouseover(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgGuts.jpg)');
			});
			
			$('#imap_main3').mouseout(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
		    });
			
			$('#imap_main4').mouseover(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgGuts.jpg)');
			});
			
			$('#imap_main4').mouseout(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
		    });
	
			$('#imap_links').mouseover(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgLinks.jpg)');
			});
			
			$('#imap_links').mouseout(function(){
				$('#index_harnessed').css('background-image', 'url(idxImgMain.jpg)');
		    });
	});
