// JavaScript Document
$(document).ready(function() {  
   $('a.title').cluetip({
		splitTitle: '|',
		showTitle: false
	});
   $('#roseManorTxt').hide();
   $('#robisonTxt').hide();
   $('#adultTxt').hide();
   $('#roseTowerTxt').hide();
   $('#sinaiFamilyTxt').hide();
   $('#kehillahTxt').hide();
   
   $('#roseManorClick').click(function() {
		$('#welcomeTxt').hide();							   	
   		$('#roseManorTxt').show();	
		$('#robisonTxt').hide();
		$('#adultTxt').hide();
		$('#roseTowerTxt').hide();
		$('#sinaiFamilyTxt').hide();
		$('#kehillahTxt').hide();
	});
   $('#robisonClick').click(function() {		   	
   		$('#roseManorTxt').hide();
		$('#robisonTxt').show();
		$('#welcomeTxt').hide();
		$('#adultTxt').hide();
		$('#sinaiFamilyTxt').hide();
		$('#kehillahTxt').hide();
		$('#roseTowerTxt').hide();
	});
   $('#adultClick').click(function() {		   	
   		$('#welcomeTxt').hide();
		$('#adultTxt').show();
		$('#robisonTxt').hide();
		$('#roseTowerTxt').hide();
		$('#roseManorTxt').hide();
		$('#kehillahTxt').hide();
		$('#sinaiFamilyTxt').hide();
	});
   $('#roseTowerClick').click(function() {		   	
   		$('#welcomeTxt').hide();
		$('#roseTowerTxt').show();
		$('#adultTxt').hide();
		$('#robisonTxt').hide();
		$('#roseManorTxt').hide();
		$('#kehillahTxt').hide();
		$('#sinaiFamilyTxt').hide();
	});
    $('#sinaiFamilyClick').click(function() {		   	
   		$('#welcomeTxt').hide();
		$('#sinaiFamilyTxt').show();
		$('#roseTowerTxt').hide();
		$('#kehillahTxt').hide()
		$('#adultTxt').hide();
		$('#roseManorTxt').hide();
		$('#robisonTxt').hide();
	});
	$('#kehillahClick').click(function() {		   	
   		$('#welcomeTxt').hide();
		$('#kehillahTxt').show();
		$('#roseTowerTxt').hide();
		$('#sinaiFamilyTxt').hide();
		$('#roseManorTxt').hide();
		$('#robisonTxt').hide();
		$('#adultTxt').hide();
	});
	
	 $("#bg_timeline").tabs();
	 $('.lightbox').nyroModal({ 
			type:'iframe', 
			width: 525, 
			height: 285 
	});
	 
	 $('#mycarousel').jcarousel({
    });
	 
	 $('#bg_polaroidTitle').cycle({
			fx:     'fade', 
			speed:  'fast', 
			timeout: 0, 
			pager:  '#thumbNav' ,
			 pagerAnchorBuilder: function(idx, slide) { 
			 return '#thumbNav a:eq(' + idx + ')'; 
			 }

		});
	 
	 $('#jqueryGallery').cycle({
			fx:     'fade', 
			speed:  'fast', 
			timeout: 0, 
			pager:  '#thumbNav' ,
			 pagerAnchorBuilder: function(idx, slide) { 
			 return '#thumbNav a:eq(' + idx + ')'; 
			 }

		});
	 
	 $('.thumbLink').click(function() {		
		$('#bg_polaroidTitle').html('pancake');
   		var currentCaption = $(this).attr('rel');
		$('#bg_polaroidTitle').html(currentCaption);
	});
	 
	$(document).ready(function(){
	var $nav_bar = $('#nav_bar'); // to avoid having to go through the DOM each time to find the element
	$('#subnav li a').mouseover(function(){
		var $this = $(this);
		var padding = 22;
		var $linkWidth = $this.width() + padding;
		$nav_bar.animate({ "left": (($this.position().left) - padding / 2), queue: false}, 300, "linear", null );  
		$nav_bar.animate({width:$linkWidth},{ duration: 300, queue: false });		
		$nav_bar.height(31);
	});
});
	 
});

