/*
Lunarboy.com JS
Modified 4/26/08
*/

$(document).ready(function() {

	// Rollover effect for Search button
	$("input#searchButton").hover(function () {
			$(this).attr("src","/res/btn_search-over.gif");
		},
		function () {
			$(this).attr("src","/res/btn_search.gif");
	});
	$("input#searchButton").mousedown(function () {
			$(this).attr("src","/res/btn_search-active.gif");
	});

	// Rollover effect for Add Comment button
	$("input#addcommentButton").hover(function () {
			$(this).attr("src","/res/btn_comment-over.gif");
		},
		function () {
			$(this).attr("src","/res/btn_comment.gif");
	});
	$("input#addcommentButton").mousedown(function () {
			$(this).attr("src","/res/btn_comment-active.gif");
	});

	// Rollover effect for Send Email button
	$("input#emailButton").hover(function () {
			$(this).attr("src","/res/btn_email-over.gif");
		},
		function () {
			$(this).attr("src","/res/btn_email.gif");
	});
	$("input#emailButton").mousedown(function () {
			$(this).attr("src","/res/btn_email-active.gif");
	});
	
 });
