var is_ie = (navigator.userAgent.toLowerCase().indexOf("msie") != -1);


$().ready(function() {
	$("#video1, #video2, #video3").click(function () {
		var $this = $(this);
		$("." + $this.attr("id")).show().siblings().hide();
	});
});

