$(document).ready(function() {
	// Get the source directory of this script
	scriptSrc = $('script[@src$=jquery.js]').attr('src').match(/^((?:\.\.\/)*)/)[1];
	
	// Image mouseover hover function
	$('.hoverimage').hover(
		function(){
			if(this.src.match('_passief.')){
				this.src = this.src.replace(/_passief./, "_over.");
			}
		},
		function(){
			if(this.src.match('_over.')){
				this.src = this.src.replace(/_over./, "_passief.");
			}
		}
	);
	
	/*$('.hoverimage').hover(
		function(){	
			$(this).addClass('nav_over');
		},
		function(){
			$(this).removeClass('nav_over');
		} 
	);*/
});