// initialise plugins
jQuery(function(){
	
	// prettyphoto init
	jQuery("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed:'slow',
		slideshow:false,
		autoplay_slideshow: false,
		show_title: true,
		overlay_gallery: false
	});
	
	jQuery('.home .testimonials').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 8000
	});
	
	// clear input on focus		
	jQuery(document).ready(function(){
		var clearMePrevious = '';
		jQuery('.clearMeFocus').focus(function() {
			if(jQuery(this).val()==jQuery(this).attr('title')) {
				clearMePrevious = jQuery(this).val();
				jQuery(this).val('');
			}
		});
		// if field is empty afterward, add text again
		jQuery('.clearMeFocus').blur(function() {
			if(jQuery(this).val()=='') {
				jQuery(this).val(clearMePrevious);
			}
		});
	});
			
});
jQuery('.primary_content_wrap a:has(img)').addClass('image-link'); 
