/* Author: mediaBOOM

*/

$(document).ready(function() {
	
	// gallery
	$('#slider').scrollable({
		mousewheel: true
	});

	// floorplans
  $('a[rel*=facebox]').facebox({
	    loadingImage : 'img/loading.gif',
     	closeImage   : 'img/closelabel.png'
	});

	$('a.back-link').live('click',function() {
		$.facebox.close();
		return false;
		});
		
	// home page slideshow
	$('#banner-slideshow').cycle();	
		
	// slimbox	
	if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) {
		$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
			return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
		});
	}		
	
		
});























