function roll1(img_name, img_src, shadowText){
	document[img_name].src = img_src;
	
}

function roll2(img_name, img_src, shadowText){
	document[img_name].src = img_src;
	document.getElementById('shadowText1').style.display = 'none';
	document.getElementById('shadowText2').style.display = 'none';
	document.getElementById('shadowText3').style.display = 'none';
	document.getElementById('shadowText4').style.display = 'none';
}

$(document).ready( function() {
	try {
		$(".change1").hover( function() {
			$("#shadowText2").hide();
			$("#shadowText3").hide();
			$("#shadowText4").hide();
			$("#shadowText1").fadeIn('medium');
		});

	} catch (err) {

	}

});

$(document).ready( function() {
	try {
		$(".change2").hover( function() {	
			$("#shadowText1").hide();
			$("#shadowText3").hide();
			$("#shadowText4").hide();
			$("#shadowText2").fadeIn('medium');
		});

	} catch (err) {

	}

});

$(document).ready( function() {
	try {
		$(".change3").hover( function() {
			$("#shadowText1").hide();
			$("#shadowText2").hide();
			$("#shadowText4").hide();
			$("#shadowText3").fadeIn('medium');	
		});

	} catch (err) {

	}

});

$(document).ready( function() {
	try {
		$(".change4").hover( function() {
			$("#shadowText1").hide();
			$("#shadowText2").hide();
			$("#shadowText3").hide();
			$("#shadowText4").fadeIn('medium');
		});

	} catch (err) {

	}

});

$(document).ready( function() {
	try {
		$(".change").mouseout( function() {
			$("#shadowText4").fadeOut(1);
			$("#shadowText3").fadeOut(1);
			$("#shadowText2").fadeOut(1);
			$("#shadowText1").fadeOut(1);
		});

	} catch (err) {

	}

});

