$(function() {
	$('.rollover').hover(function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	});
	/*
	$('.rollover').hover(function() {
		$('#introduction').attr('src', $('#introduction').attr('default'));
		$('#petition').attr('src', $('#petition').attr('default'));
		$('#whatcanyoudo').attr('src', $('#whatcanyoudo').attr('default'));
		$('#coalition').attr('src', $('#coalition').attr('default'));
		$('#support').attr('src', $('#support').attr('default'));
		$('#howlivable').attr('src', $('#howlivable').attr('default'));
		$('#gallery').attr('src', $('#gallery').attr('default'));
		
		var currentImg = $(this).attr('src');
		//alert(currentImg);
		$(this).attr('src', $(this).attr('hover'));
		//$(this).attr('hover', currentImg);
	});*/
	
	$('.rollover').click(function(){
		window.location='http://www.livablenepal.org/'+$(this).attr("href"); return false;							 
	});
	
});