var bannerTop1 = $('<img />').attr('src', '/images/home_buttons/bannerTop1_text.jpg');
var bannerTop1Hover = $('<img />').attr('src', '/images/home_buttons/bannerTop1_text_hover.jpg');

var bannerTop2 = $('<img />').attr('src', '/images/home_buttons/bannerTop2_text.jpg');
var bannerTop2Hover = $('<img />').attr('src', '/images/home_buttons/bannerTop2_text_hover.jpg');

var bannerTop3 = $('<img />').attr('src', '/images/home_buttons/bannerTop3_text.jpg');
var bannerTop3Hover = $('<img />').attr('src', '/images/home_buttons/bannerTop3_text_hover.jpg');

$(document).ready(function() {
	$(".bannerTop1").find("img:first").hover(function(){
		$(this).attr("src", "/images/home_buttons/bannerTop1_text_hover.jpg");
	});
	
	$(".bannerTop1").find("img:first").mouseout(function(){
		$(this).attr("src", "/images/home_buttons/bannerTop1_text.jpg");
	});
	
	$(".bannerTop2").find("img:first").hover(function(){
		$(this).attr("src", "/images/home_buttons/bannerTop2_text_hover.jpg");
	});
	
	$(".bannerTop2").find("img:first").mouseout(function(){
		$(this).attr("src", "/images/home_buttons/bannerTop2_text.jpg");
	});
	
	$(".bannerTop3").find("img:first").hover(function(){
		$(this).attr("src", "/images/home_buttons/bannerTop3_text_hover.jpg");
	});
	
	$(".bannerTop3").find("img:first").mouseout(function(){
		$(this).attr("src", "/images/home_buttons/bannerTop3_text.jpg");
	});
});
