$().ready(function(){
	
	//
	// Apteka-specified lines
	//
	$('a').each(function(){
		if ($(this).attr('href') == '/live/support.php')
		{
			$(this).attr('href', 'javascript:void(0);');
			$(this).click(function(){
				window.open('/live/support.php', 'support', 'width=475,height=400,toolbar=no,location=no,menubar=no,resizable=no');
			});
		}
	});
	
	// Placeholder
	$('[placeholder]').placeholder();
	
	// Antiplaceholder on submit
	$('form').submit(function(){
		$(this).find(':input').each(function(){
			if ($(this).val() == $(this).attr('placeholder')) $(this).val('');
		});
		
		$(this).find('textarea').each(function(){
			if ($(this).val() == $(this).attr('placeholder')) $(this).val('');
		});
	});
	
	// Errors
	if ($('#errors').length)
	{
		$('#errors').addClass('hidden'); // Hide errors from view if JS enabled
		$.fn.colorbox({inline:true, href:"#errors_list", open:true, width:'50%'});
	}
	
	//
	// $('.product-bottom-panel .save').closest('.product-bottom-panel').find('.popup-wrapper').addClass('discounted');
	
	// Catalog images
	$('.product_detail_img img[big]').mouseenter(function(){
		$('#big-photo').attr('src', $(this).attr('big'));
		$('#big-photo').attr('title', $(this).attr('title'));
		$('#big-photo').attr('alt', $(this).attr('alt'));
	});
	
	// Init colorbox
	$('.colorbox').colorbox();
	
	// Carousel
	if ($.browser.msie)
	{
		$('#bottom_images_carousel li:gt(2)').hide();
	} else {
		$('#bottom_images_carousel').carousel();
	}
	//$("#bottom_images_carousel").scrollable().mousewheel();
});