$(document).ready(function(){
	
	
	// On click expand and collapse the table tr
	$('.expand').click(function(){
		$('.expand-popup').toggle();
		$(this).toggleClass('collapse');
		
	});
	
	
	
	$('.slide-contnt-wrap').after('<div id="slidenav" class="slide-nav">').cycle({
		fx: 'scrollUp', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		pager:  '#slidenav',
		speed:  'slow',
		pause:   1 
	});
	
	$('.home-bnr-slide').cycle({ 
		fx:     'fade', 
		timeout: 2800, 
		next:   '.next', 
		prev:   '.prev' 
		
	});
	
	

	
	$('#gallery a').lightBox();
     $('.big-thumb a').lightBox();
     $('.site-plan a').lightBox();
     $('.small-thumb a').lightBox();

	
	
});

