stillOpen = 'none';

function hideMessage(elementID) {
	element = document.getElementById(elementID);
	$('#' + elementID +'').fadeOut('slow', function() {
        // Animation complete
      });
    element.style.display = 'none';
	stillOpen = 'none';
};

$(function() {

  $(".indexButtons").click(function() {
		// validate and process form
		itemNum = this.id;
		if(itemNum.length < 4) {
			// do nothing
		} else {
		
		if(stillOpen != 'none') {
			hideMessage('player');
		}
		
		stillOpen = "player" + itemNum;
		
	    $('#player').html("<div id='player" + itemNum + "' class='indexVideoPlayer'></div>");
		$('#player').fadeIn(1000, function() {
        // Animation complete
      	});
		
		if(isNumeric(itemNum)) {
			$('#player').html("<div id='player" + itemNum + "' class='indexVideoPlayer'><div><img src='http://www.shearerpainting.com/images/icons/no.png' alt='close' onclick=\"hideMessage('player');\" style='float: right;' /><object width=\"560\" height=\"340\"><param name=\"allowfullscreen\" value=\"true\" /><param name=\"allowscriptaccess\" value=\"always\" /><param name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=" + itemNum + "&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1\" /><embed src=\"http://vimeo.com/moogaloop.swf?clip_id=" + itemNum + "&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"560\" height=\"340\"></embed></object></div>");
		$("#player" + itemNum).delay(2000).show(100, function() {
        // Animation complete
		});
		} else {
	    $('#player').html("<div id='player" + itemNum + "' class='indexVideoPlayer'><div><img src='http://www.shearerpainting.com/images/icons/no.png' alt='close' onclick=\"hideMessage('player');\" style='float: right;' /><object width='560' height='340'><param name='movie' value='http://www.youtube.com/v/" + itemNum + "&hl=en_US&fs=1&rel=0'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='http://www.youtube.com/v/" + itemNum + "&hl=en_US&fs=1&rel=0' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='560' height='340'></embed></object></div>");
		$("#player" + itemNum).delay(2000).show(100, function() {
        // Animation complete
		});
		}
		}
      
	});
});

// If the element's string matches the regular expression it is numbers and letters
function isNumeric(elem, helperMsg){
	var alphaExp = /^[0-9]+$/;
	if(elem.match(alphaExp)){
		return true;
	}else{
		return false;
	}
}

