//fancybox
		$(document).ready(function() {
		//зум картинок
			$("a.zoomzoom").fancybox({
				'titleShow'		: false
			});
		});
//шоу
		jQuery(function() {
    	jQuery('div.promo').cycle({
        fx:     'fade',
        speed:  900,
        timeout: 3000,
		slideExpr: 'div.promo_contents'
   		 });
   		 
		$(".item").fancybox({
		'autoDimensions' : false,
		'autoScale' : false,
		'width' : 900,
		'height' : 300,
		'scrolling' : 'auto',
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
		}); 
});
