//preload images
if (document.images) {
	preloader = Array(
		"/images/home_btn3.gif",
		"/images/aboutus_btn3.gif",
		"/images/members_btn3.gif",
		"/images/media_btn3.gif",
		"/images/newsblog_btn3.gif",
		"/images/events_btn3.gif",
		"/images/booking_btn3.gif"
	);
	
	for (i=0; i<preloader.length; i++) {
		imageObj = new Image();
		imageObj.src = preloader[i];
	}
}
 
function mouseover(image) {
	if (document.images) document[image].src = "/images/" + image + "3.gif";
}
 
function mouseout(image) {
	if (document.images) document[image].src = "/images/" + image + "2.gif";
}

function sendcomment()
{
	var bad = false;
	
	if (!bad && !document.comments.Name.value)
	{
		alert("Please Fill Out Your Name");
		document.comments.Name.select();
		bad = true;
	}
	if (!bad && !document.comments.Comment.value)
	{
		alert("Please Write Your Comments");
		document.comments.Comment.select();
		bad = true;
	}
	
	if (!bad) document.comments.submit();
}

function runtwitter()
{
    getTwitters('tweet', {
        id: 'KM_Legacy',
        clearContents: true, // leave the original message in place
        count: 1,
		enableLinks: true,
        ignoreReplies: true,
        newwindow: true,
		template: "%text% <div style='color: #999; font-size: .9em;'>%time%</div>"
    });
}