jQuery.noConflict();

jQuery(document).ready(function() {
	
	if (jQuery('h4:contains(Testimonial)').is('h4:contains(Testimonial)')) {
		
	}
	
	jQuery('h4:contains(Testimonial)').each(function(i) {
		
		heading = jQuery(this).clone();
		var nodes = jQuery(this).nextAll('p');
		
		//alert(nodes.title);
		
		jQuery(nodes).wrapAll('<div class="testimonial" id="t-'+i+'"></div>');
		jQuery(this).next().prepend(heading);
		
		jQuery(this).remove();
		//alert(heading);
		
	});
	
	jQuery("#datepicker").datepicker({ minDate: 1 });
	//jQuery("#datepicker").click(function(){alert(1);});
	
	// header image fade
	
	// load images into header 
	//$('#header').append('<img src="../images/sigevent/" width="" height="" />');
	
	//$('#header').cycle('fade');
	
	
	
	// check for IE6
	// add logos.
	
});