jQuery.noConflict();

jQuery(document).ready(function() {   
	jQuery(".switcher").click(function() {
		if(jQuery("#map_canvas").css('display') == 'none')
		{
			jQuery("#map_canvas").show();
			jQuery("#flash_canvas").hide();
		}
		else
		{
			jQuery("#map_canvas").hide();
			jQuery("#flash_canvas").show();
		}
		return false;
	});
});

function showClip(id) {
	window.open ("video.php?id="+id,  "mywindow","location=1,status=1,scrollbars=1,resizable=1,width=500,height=500");
}