
$(".rollover").mouseover(function(){
	var imgUrl = $(this).attr("src");
	var imgUrlString = /\.jpg|\.jpeg|\.png|\.gif/g;
	var imgUrlType = imgUrl.match(imgUrlString);
	var imgFileParts = imgUrl.split(imgUrlType);
	$(this).attr("src",imgFileParts[0] + "_hover" + imgUrlType);
});

$(".rollover").mouseout(function(){
	var imgUrl = $(this).attr("src");
	if (imgUrl.indexOf("_hover")>0) {
		var imgFileParts = imgUrl.split("_hover");
		$(this).attr("src",imgFileParts[0] + imgFileParts[1]);
	}
});	

/*------------------------------ Thickbox  ------------------------------*/
/* tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
imgLoader = new Image();// preload image
imgLoader.src = tb_pathToImage;
*/
/*
$("#slu_free").bind("click", function() {
	location.href="/personal-taxes/online/free-edition.jsp";
});
$("#slu_basic").bind("click", function() {
	location.href="/personal-taxes/online/basic.jsp";
});
$("#slu_deluxe").bind("click", function() {
	location.href="/personal-taxes/online/deluxe.jsp?priorityCode=4486900000&cid=bn_msn_f_tc-s_||%eaid!_%esid!_%epid!_%ecid! ";
});
$("#slu_premier").bind("click", function() {
	location.href="/personal-taxes/online/premier.jsp?priorityCode=4486900000&cid=bn_msn_f_tc-s_||%eaid!_%esid!_%epid!_%ecid! ";
});
$("#slu_homebiz").bind("click", function() {
	location.href="/personal-taxes/online/home-and-business.jsp?priorityCode=4486900000&cid=bn_msn_f_tc-s_||%eaid!_%esid!_%epid!_%ecid!";
});
*/