$(document).ready(function() {
	if($('.slider').height() > 0){
	   $('.slider').cycle({
			fx:     'scrollLeft',
			speed:  'slow',
			timeout: 3000,
			pager:  '#spager',
			slideExpr: '.slide'
		});
	}
	$(".slider .textholder").css('opacity','0.9');
	
	$("#msg_pretty img").each(function(){

		var img_url = $(this).attr('src');
	
		$(this).attr('src' , img_url);

		$(this).wrap('<a class="fancybox" href="'+img_url+'"></a>');

	});
	
	
	// fancy box
	
	$("a.fancybox").fancybox({
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
			
	$("a[rel=album1]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});
	
});
