/*===========================================================================
	Behavior (Global)
	
	This JavaScript executes dynamic behaviors such as:
	* Preloading images
	* Flash Replacements (i.e. sIFR, UFO, SWFObject, etc.)
	* Decorate the DOM with presentational elements
	* Collapsing/expanding sections
	* Form validation
	* Popup windows
===========================================================================*/

$(document).ready(function() {
	$("div.basic").accordion({
		header: ".tab-title",
		autoheight: false
	});
	
	$("a.zoom-photo").lightBox({
		overlayOpacity: 0.6
	});
})