﻿$(document).ready(function() {

   $("a[rel^='prettyPhoto']").prettyPhoto({
      animation_speed: 'normal', /* fast/slow/normal */
      opacity: 0.35, /* Value between 0 and 1 */
      show_title: false, /* true/false */
      allow_resize: true, /* true/false */
      counter_separator_label: ' of ', /* The separator for the gallery counter 1 "of" 2 */
      theme: 'facebook', /* light_rounded / dark_rounded / light_square / dark_square */
		default_width: 640,
		default_height: 480,
      callback: function() { }
   });

	// hide the news & events tab if there are none...
	if($(".srhs_eventcontainer-no-items-found").length > 0) {
		$("a[href=#Tab2]").parent().hide();
	}
});
