$(document).ready(function() {
	/** Style */
	$("a:has(img)").css('border','0');
	/** Fancybox */
	var ireg = /\.(png|gif|jpe?g)$/i
	$('a:has(img)').each(function() {
		if(ireg.test($(this).attr('href'))) {
			$(this).fancybox({'titlePosition' : 'over'});
			$(this).children('img').addClass('zoom');
		}
	});
	$(".images a:has(img)").attr('rel','images');
	$("a[rel=images]").fancybox({
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'titlePosition' : 'over',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + title + ' <span style="color:#888">&nbsp;слайд ' + (currentIndex + 1) + ' из ' + currentArray.length + '</span></span>';
		}
	});
	/** Cycle */
	if($().cycle) {
	 $("#slideshow ul").cycle({
	  timeout:12000,
	  speed:2000
	 });
	}

});
