$(function(){
	$('.pic2').colorbox({
		href: '/json/fForm/',
		opacity: 0.5
	});
	
	$('.feedForm').live('submit', function(){
		doLoad(this,'/ajax/checkForm/');
		return false;
	});
	
	$('.sInput').focus(function(){
		if ($(this).val()=='Искать...'){
			$(this).val('');
		}
	});
	
	$('.sInput').blur(function(){
		if ($(this).val()==''){
			$(this).val('Искать...');
		}
	});
	
	//$('select.list').customSelect();
});
