jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("a.new_window").attr('target','_blank');

	
	jQuery(".feature_item").hover(
	   function () {
	        jQuery(".feature_info").fadeIn("def");
	    }, 
	    function () {
	        jQuery(".feature_info").fadeOut("fast");
	    }
	);
	
	jQuery('#features_container').cycle({ 
	    fx:    'fade', 
	    pause:  1,
	    speed:    600, 
	    timeout:  7000,
	    pager: '#home_nav_cycle' 
	});
	
	jQuery('.slideshow_co').cycle({ 
	    fx:    'fade', 
	    pause:  1,
	    speed:    600, 
	    timeout:  0,
	    pager: '#local_controls',
	    next:   '#next_slide',
	    prev:   '#prev_slide'	 
	});
	
	jQuery('.slideshow_re').cycle({ 
	    fx:    'fade', 
	    pause:  1,
	    speed:    600, 
	    timeout:  0,
	    pager: '#local_controls',
	    next:   '#next_slide',
	    prev:   '#prev_slide'	 
	});
		
	jQuery('#clients_list div:first-child').addClass('first');
    
	jQuery("#research_main p:last").append("&nbsp;<img src='images/square.gif' alt='' />");
	
})
