/* *****************************************
//  WebTank javascript File
//  Title: hover.js
//  File updated: 2010-09-03 12:21:02
// 
//  Do NOT manually edit this generated file
// **************************************** */


// FUNCTIONS

var $j = jQuery.noConflict();

function hover() {

	$j("#hover").hover(				
		
		function() {
			
			$j("#hover > img").attr("src", "./images/editorial/id=342.png");
			
		}, 
		
		function() {
		
			$j("#hover > img").attr("src", "./images/editorial/id=344.png");
			
		}
		
	);
	
	/*   */
	
	$j("#hover_prev").hover(		
	
		function() {
			
			$j("#hover_prev > img").attr("src", "./images/editorial/id=921.png");
		
		},
		
		function() {
		
			$j("#hover_prev > img").attr("src", "./images/editorial/id=920.png");
		
		}
		
	);
	
	/*   */
	
	$j("#hover_next").hover(
				
		function() {

			$j("#hover_next > img").attr("src", "./images/editorial/id=919.png");
		
		},
		
		function() {
		
			$j("#hover_next > img").attr("src", "./images/editorial/id=918.png");
		
		}
		
	);

}

$j(document).ready(
	
	function() {
	
		hover();
	
	}
	
);

