$(function(){
	$('#photos_home').cycle({ 
	    fx:    'fade', 
	    speed:  'slow',
	    timeout: 2000,
	    next:   '#next', 
    	prev:   '#prev',
		cleartype: true
	});
	$('#photos_home img').css('background-color', 'transparent');
	
	$('#photos').cycle({ 
	    fx:    'fade', 
	    speed:  'slow',
	    timeout: 0,
	    next:   '#next', 
    	prev:   '#prev'
	});
	
	$('#headline').cycle({ 
	    fx:    'fade', 
	    speed:  'slow',
	    timeout: 0,
	    next:   '#next', 
    	prev:   '#prev'
	});
	
});