// JavaScript Document

		$(document).ready(function(){
			//alert('x');
 
			<!--
				// You need to specify the size of your background image here (could be done automatically by some PHP code)
				var FullscreenrOptions = {  width: 1000, height: 625, bgID: '#bgimg' };
				// This will activate the full screen background!
				jQuery.fn.fullscreenr(FullscreenrOptions);
			//-->
 
 
 
			$(".navitem a img").mouseover(function() {
			//	$(this).addclass("active").removeclass("inactive");	
				//alert($(this).attr("src"));
				// set all other hfdNav to inactive
				for (var x = 1; x <= 12; x++){
					var hfdImg = '#img_' + x;
					//alert ('hfdImg: ' + hfdImg);
					
					//var myImg = document.getElementById('img_3');
					///alert ('src: ' + myImg.src);
					if ( $(hfdImg).length > 0 ) {
						if ($(hfdImg).attr("class") != 'active'){
							$(hfdImg).attr("src", $(hfdImg).attr("src").replace("_r.png", "_g.png"));	
						}
					}
					
				}
				
				// set itself active
				$(this).attr("src", $(this).attr("src").replace("_g.png", "_r.png"));
			});
			
			
			$(".navitem a img").mouseout(function() {
				// set itself inactive if not the active button
				//alert($(this).attr("class"));
				if ($(this).attr("class") != 'active'){
					$(this).attr("src", $(this).attr("src").replace("_r.png", "_g.png"));
				}
			});	
			
			
			
			$(".lightbox").lightbox({
				fitToScreen: true
			}); 
		});
	
	
 
 
 
 