(function($) {
	$(document).ready(function() {
	
		$('#main').css('height', $(document).height()-88+'px');
		$('#main_part').css('min-height', $('#main').height()-88+'px');
	
		/* main_menu */
		// последний маркер
		$('#main_menu td.separator:last').remove();
		
		$('#main_menu').css('visibility', 'visible');
	
		// меню ховер
		$('#main_menu td.item').hover(
			function(){
				$(this).addClass('hover');
			},
			function(){
				$(this).removeClass('hover');
			}
		);

		/* main_menu - END */
		
		
		// Catalog
		$('.product_js').live('click', function(){
			var pLeft = Math.round($(document).scrollLeft()+($(window).width()-837)/2)+'px';
			var pLeft2 = Math.round($(document).scrollLeft()+($(window).width()-512)/2)+'px';
			var pTop = ($(document).scrollTop() + ($(window).height()-494)/2) + 'px';
			$('#product_window').css({ 'top' : pTop, 'left' : pLeft });

			$('#shadow').fadeIn();
			$('#shadow').css({ 'height' : $(document).height() +'px'});
			$.ajax({
				type: "GET",
				url: "/catalog/product_window/"+$(this).attr('rel')+"/",
				data: '',
				dataType: 'json',
				success: function(data){	
					$('#product_window').html(data.content);
					if (!data.has_note) {
						$('#product_window').css('left',pLeft2);
						$('#product_window').find('.text').css('display','none');
						$('#product_window').find('.top_shadow').width('512px');
						$('#product_window').find('.top_shadow').css('left','3px');
						$('#product_window').find('.bottom_shadow').width('512px');
						$('#product_window').find('.bottom_shadow').css('left','3px');
						
						$('#product_window').find('.center').width('462px');
						$('#product_window').find('.center').css('background','url("/application/includes/images/product_center_border2.png") repeat-y');
						$('#product_window').find('.close').css('left','487px');
					} else {
					
						$('#product_window').find('.text').css('display','');
						$('#product_window').find('.top_shadow').width('837px');
						$('#product_window').find('.top_shadow').css('left','');
						$('#product_window').find('.bottom_shadow').width('837px');
						$('#product_window').find('.bottom_shadow').css('left','');
						
						$('#product_window').find('.center').width('');
						$('#product_window').find('.center').css('background','');
						$('#product_window').find('.close').css('left','');
					}
					$('#product_window').fadeIn();
				},
				error: function(){
					alert('error');
				}
			});

			return false;
		});
		
		$('#product_window .close').live('click', function(){
			$('#shadow').fadeOut();
			$('#product_window').fadeOut();
			return false;
		});
		
		$('#shadow').live('click', function(){
			$('#shadow').fadeOut();
			$('#product_window').fadeOut();
			return false;
		});
		// Catalog - END
		
	});
})(jQuery);
