$(document).ready(function(){
	$(".pop").colorbox({rel:'photos', transition:"elastic"});
	$("p.back a").click(function(e){
		e.preventDefault;
		window.history.back();
	});
	
	$('#gallery ul').cycle({ 
		fx: 'scrollHorz', 
		speed: 'fast', 
		delay: 0,
		easing: 'easeInOutExpo',
		duration: 10000,
		prev: '.prev',
		next: '.next',
		pager: '.pagination',
		pagerAnchorBuilder: function(index, el) {
        	return '<a href="#">&bull;</a>';
        } 
	});
	
});
