$(document).ready(function() {
	$(".tweet").tweet({
	  join_text: "auto",
	  username: "boombusuk",
	  avatar_size: 0,
	  count: 1,
	  auto_join_text_default: "", 
	  auto_join_text_ed: "",
	  auto_join_text_ing: "",
	  auto_join_text_reply: "",
	  auto_join_text_url: "",
	  loading_text: "loading tweets..."
	});

	$('.scroll-pane').jScrollPane();
	$('.scroll-pane-arrows').jScrollPane({
			showArrows: true,
			horizontalGutter: 10
	});
	
	// replaced with cycle.js, as more advanced and smooth
	$('#slider').cycle({ speed: 2000, timeout: 4000, type: 'sequence',containerheight: '413px'}); 
	
//	$('.photo').fadeTo('fast');

	$('.photo').hover(function(e) {
	    	
		$(this).fadeTo('slow', 0.5);
		
	
	}, function(e) {
	    $(this).fadeTo('slow', 1.0);
	});

	


})
