


 $(document).ready(function() {
	
							
  // $("a[rel='example1']").colorbox();
	//			$("a[rel='example2']").colorbox({transition:"fade"});
		//		$("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});
			
	//			$(".single").colorbox({}, function(){
		//			alert('Howdy, this is an example callback.');
	//			});
				$(".colorbox").colorbox();
				$(".youtube").colorbox({iframe:true, width:650, height:550});
				$(".neighborhood").colorbox({width:"75%", height:"85%", iframe:true});
				$(".iframe").colorbox({width:450, height:575, iframe:true})
				
				$(".inline").colorbox({width:"50%", inline:true, href:"#inline_example1"});
		
		 $('#faq').find('dd').hide().end().find('dt').click(function() {
  			   $(this).next().slideToggle();
  		 });
				
 });
 
   //jQuery.noConflict();
  /*$(document).ready(function() {
  $('img.captify').captify({
				// all of these options are... optional
				// ---
				// speed of the mouseover effect
				speedOver: 'fast',
				// speed of the mouseout effect
				speedOut: 'normal',
				// how long to delay the hiding of the caption after mouseout (ms)
				hideDelay: 500,	
				// 'fade', 'slide', 'always-on'
				animation: 'slide',		
				// text/html to be placed at the beginning of every caption
				prefix: '',		
				// opacity of the caption on mouse over
				opacity: '0.7',					
				// the name of the CSS class to apply to the caption box
				className: 'caption-bottom',	
				// position of the caption (top or bottom)
				position: 'bottom',
				// caption span % of the image
				spanWidth: '100%'
			});
		});
 });
   


*/