$(function(){	
	
    //#tabs for event details
	$('#tourpanel').tabs();
	
	$('#videolinks').show();
	
	//#show hide comment form
	$('#comment_form').hide();
	$('#toggle-form').show();
	
	$('#videolinks a').colorbox({width:'467', inline:true, href: function(){ return $(this).attr('href'); } });
//	$('#photolinks a').colorbox({width:'650', height:'400', inline:true, href: function(){ return $(this).attr('href'); } });
	$('#photolinks a').colorbox();
	
	$('#toggle-form').click(function () {
        $(this).hide();
		$('#comment_form').show();
	});   
})
