$(document).ready(function(){
Shadowbox.init({
		overlayOpacity: 0.90,
		displayNav:	true
		});	
	
	
  $("ul li:first-child").addClass("firstchild");
  $("ul li:last-child").addClass("lastchild");

		$('#imageSlider').cycle({ 
			fx:     'fade', 
			prev:   '#prev-left', 
			next:   '#next-right', 
			timeout: 0 
		});
		
		$('#imageSliderHome').cycle({ 
			fx:     'fade',
			prev:   '#prev-left',
			next:   '#next-right',  
			timeout: 0,
			pager:  '#navHome',
			pagerAnchorBuilder: function(idx, slide) { 
				// return selector string for existing anchor 
				return '#navHome li:eq(' + idx + ')'; 
			} 
		});
	
	 //toggle the componenet with class msg_body
	  $("h3.toggle").click(function()
	  {
		$(this).next("div.wpcf7").slideToggle(500);
		$(this).toggleClass('arrowDown');
	  });
	  

	
});





