$(document).ready(function() {

    var selectedPage = true;

    $(".MenuLinks a img").hover(function(){

        if ($(this).attr("src").indexOf("_selected") == -1) {
            var newImage = $(this).attr("src").replace(".png", "_over.png");
            $(this).attr("src",newImage); 
			newImage = $(this).attr("src").replace(".jpg", "_over.jpg");
            $(this).attr("src",newImage); 
            selectedPage = false;
        }
		
    });
    
	$(".MenuLinks a img").mouseleave(function() {

	    if (selectedPage == false) {
            var newImage = $(this).attr("src").replace("_over.png", ".png");
            $(this).attr("src",newImage); 
			newImage = $(this).attr("src").replace("_over.jpg", ".jpg");
            $(this).attr("src",newImage); 
            selectedPage = true;
        }
	});
	$("#searchinput").keypress(function(event){
		if (event.which == 13){
			SearchInput();
		}
	});

    
});

<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->


