$().ready(function(){
	
	$('.basket-update, .del-icon').click(function(){
		$(this).closest('form').submit();
	});
	
	// 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();
	
	$("#request-callback").colorbox({width:"400px", height:"350px", iframe:true});
});