$(document).ready(function() {
	
	//HIDE AND SHOW NEWS ITEMS
	$('ul.newsitems:eq(0)> li>div').slideUp(300); 
	$('ul.newsitems:eq(0)> li>span').click(function() {
		$(this).next().slideToggle('300');
	});
	
	//HIDE AND SHOW QUICKLINKS AREA AT TOP OF PAGE
	$('div.quicklinks').slideUp(300); 
	$('div#moreinfo img').click(function() {
		$('div.quicklinks').slideToggle('300');
	});
	
	//HIDE AND SHOW MINISTRY OPENINGS
	$('div.molistings>ul:eq(0)>li>div.mobox').slideUp(300); 
	$('div.moinfomain').children('span.mochurchname').click(function() {
		$(this).parents().siblings('div.mobox').slideToggle('300');
	});
	
	//STRIPE TABLES
	$("table.cleantable tr:nth-child(even)").addClass("even");
	
  $(".alert").animate({ backgroundColor: "red" }, 500).animate({ backgroundColor: "white" }, 500).animate({ backgroundColor: "red" }, 1000).animate({ backgroundColor: "white" }, 1000);

  //DATE PICKER
  //$("input[name=traveldate]").datepicker({clickInput:true});
  if (jQuery.isFunction(jQuery.fn.datepicker)) {
     $(".datepick").datepicker({clickInput:true});
  }; 
     
  $('a[rel=external]').attr('target','_blank');
  
});



