// image fade slideshows
$(document).ready(function() {
    $('.slideshow ul').cycle({
		fx: 'fade',
		timeout: '7000',  // milliseconds between slide transitions (0 to disable auto advance)
		speed: '2000'  // speed of the transition (any valid fx speed value) 
	});
});

// menu rollovers
$(document).ready(function() {
	
			
	$(function() {
    $("#whatwedo li a img").hover(
        function () {
        	$(this).attr("src", $(this).attr("src").replace(/.gif/, "-ovr.gif"));		
        },
        function () {
        	$(this).attr("src", $(this).attr("src").replace(/-ovr.gif/, ".gif"));		
        }
    );
});
});