﻿function MouseHover(id,imagePath)
{
	document.getElementById(id).src=imagePath;
	document.getElementById(id).style.cursor="hand";
}
function MouseOut(id,imagePath)
{
	document.getElementById(id).src=imagePath;
	document.getElementById(id).style.cursor="default";
}
function SearchClick(inputID)
{
	var keyword = document.getElementById(inputID).value;
	window.location="SearchEngine.aspx?key="+ keyword +'&lookingfor=title';
}