//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {

	
	$('.nav_item_roll').hover(function(){
	
		src = $(this).attr('src');
		var new_src = src.replace('off','on');
		$(this).attr('src',new_src);
	
	},function(){
	
		$(this).attr('src',src);
	
	});
	
	
	$('#language').change(function() {
	  		var id = $('#language').val();
	  		window.location = "/" + id;
	});

});


