$(document).ready(function(){
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs("div.panes > div");

	//Examples of how to assign the ColorBox event to elements
	if(navigator.appName !='Microsoft Internet Explorer'){
		$("a.popup").colorbox({iframe:true, innerWidth:360, innerHeight:240});
		$("a[rel='gallery']").colorbox({iframe:true, innerWidth:540, innerHeight:460, current:"Results {current} of {total}"});
	}else{
		$("a.popup").colorbox({iframe:true, innerWidth:360, innerHeight:240});
		$("a[rel='gallery']").colorbox({iframe:true, innerWidth:540, innerHeight:460, current:"Results {current} of {total}"});
		}

});
