// JavaScript Document
$(document).ready(function(){
	//hover
	$(".buttons").hover(function(){
		//var picture = "images/" + $(this).attr("class") + ".jpg";
//		$("#swapimage .floatPicture:visible").fadeOut("fast",function(){
//			$("#swapimage .floatPicture:hidden").fadeIn("fast").attr("src",picture);
//		});
//		$("#swapimage a").attr({
//			href:$(this).attr("href"),
//			title:$(this).attr("title")
//		});
//		$("#swapimage .basePicture:visible").fadeIn("fast").attr("src",picture);

//			alert($(this).parent().parent().find("h3").children());
		// for h3
			var $imgName = $(this).parent().parent().find("h3").children().attr("src");
			$(this).parent().parent().find("h3").children().attr("src",$imgName.replace(".jpg", "_f.jpg"));

		// for bottum
			var $btImgName = $(this).find("img").attr("src");
			$(this).find("img").attr("src",$btImgName.replace(".jpg", "_f.jpg"));
		//alert($imgName);

	});
	
	//hover
	$(".buttons").mouseout(function(){
		// for h3
			var $imgName = $(this).parent().parent().find("h3").children().attr("src");
			$(this).parent().parent().find("h3").children().attr("src",$imgName.replace("_f.jpg", ".jpg"));
		//alert($imgName);

		// for bottum
			var $btImgName = $(this).find("img").attr("src");
			$(this).find("img").attr("src",$btImgName.replace("_f.jpg", ".jpg"));
		//alert($imgName);

	});
	
});
