/* Javascript */

/* JQuery */

$(function(){	
	
	/*** Go to Top **/
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	/*** End **/
	
	$('#Search').click(function(){
		if($('#keyword').val()==""){
			alert("กรุณาใส่คำที่ต้องการค้นหา");
			$('#keyword').focus();
			return false;
		}else{
			$('#formsearch').submit();
			return true;
		}
	});

});


function ShowImage(url,title){
	$('p.bigimage').html('Loading...');
	$('p.bigimage').html('<img src="'+url+'" alt="'+title+'" border="0" align="absmiddle" />');
}
