// ***********************************************************************************
// ***********************************************************************************
// Home 
// ***********************************************************************************
// ***********************************************************************************

$(document).ready( 
	function() {
		
		
		// --------------------------------------------------------
		// --------------------------------------------------------
		// Roll-over thumb   
		// --------------------------------------------------------
		// --------------------------------------------------------
			$('div#sThumbsShift img.imgThumb' ).hover( 
				function() {
					$( this ).css( { borderColor: "#12466C" } );
				},
				function() {
					$( this ).css( { borderColor: "#C4C0C0" } );
				});
			// End {"hover immagini"}
		// --------------------------------------------------------
		// --------------------------------------------------------
		
		
		// --------------------------------------------------------
		// --------------------------------------------------------
		// click thumb   
		// --------------------------------------------------------
		// --------------------------------------------------------
			$('div#sThumbsShift a.clickZoom' ).click( 
				function() {
					window.open( this.href ); 
					return false;
				});
			// End {"click"}
		// --------------------------------------------------------
		// --------------------------------------------------------
		
						
	});
	// End {"ready"}
	
// ***********************************************************************************
// ***********************************************************************************
