// THIS FILE CONTAINS ALL THE SETTINGS FOR THE JQUERY PLUGINS USED
jQuery(document).ready(function () {

//Form Sample text
/*	jQuery('form input[type="text"], form textarea').example(function() {
	  return jQuery(this).attr('title');
	});
*/
// IMAGE LIGHTBOX (COLORBOX)	
//	jQuery('a[href*=".jpg"],a[href*=".gif"],a[href*=".png"]').colorbox();	
	jQuery('.gal-item a').colorbox({
		opacity: 0.56,
		maxWidth: 800,
		maxHeight: 800
	});	

	jQuery('a[href$=".gif"],a[href$=".jpg"],a[href$=".png"],a[href$=".GIF"],a[href$=".JPG"],a[href$=".PNG"]').colorbox({
		opacity: 0.56,
		maxWidth: 800,
		maxHeight: 800
	});	

	jQuery('.zoomFloorplans').colorbox({
		width: 1000,
		height: 1000,
		overlayClose: false,
		iframe: true
	});	

	jQuery('[href="/interactive-map/"],[href="/interactive-map"],[href="interactive-map"],[href="interactive-map/"]').colorbox({
		width: "95%",
		height: "95%",
		overlayClose: false,
		iframe: true
	});	

//CUSTOM
//	jQuery('#commentList li:last,#sidebar .module:last, .aTweet:last').addClass('last');
//	jQuery('form label').addClass('offLeft');
});//end document ready

