$(document).ready(function(){

	// slide show for homepage
	$('#slideshow img').removeClass('hide');
	$('#slideshow').cycle({
		fx:     'fade',
	 	speed:   'slow' 
	 });
	
	$('#slideshowpress').cycle({ 
	    fx:     'scrollLeft', 
	    speed:  'slow', 
	    next:   '#slideshowpress' 
	});
	
	$('#slideshowcollection').cycle({ 
	    fx:     'fade', 
	    speed:  'slow', 
	    next:   '#slideshowcollection' 
	});
	
});


function titleOver(e) {
	e.style.opacity = 0.5;
	e.style.filter = "alpha(opacity=50)";
}

function titleOut(e) {
	e.style.opacity = 1;
	e.style.filter = "alpha(opacity=100)";
}
