$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		showTitle: false,
		theme: 'facebook'
	});	
	
	$('#hero').cycle({
					 speed: 2000,
					 timeout: 6000
					 })
	
	$('.roll').hover(function(){
							  $(this).siblings('a').addClass('hover');
							  },
					 function(){	 
							  $(this).siblings('a').removeClass('hover');
							  });
	
});
