$(document).ready(function(){

	// Обработка формы быстрого поиска
	$('#quick-search-form .text').bind('focus', function(){
		if(! $(this).attr('ph') ) $(this).attr('ph', this.value);
		if( $(this).attr('ph') == $(this).val() ) $(this).val('').removeClass('empty');
	}).bind('blur', function(){
		if (! $(this).val() ) $(this).val($(this).attr('ph')).addClass('empty');
	});
	$('#quick-search-form').bind('submit', function(){
		if ($('.text', this).val() == $('.text', this).attr('ph')) {
			$('.text', this).val('')
		}
	});

	// Для устранения недостатков
	if ($.browser.msie) {
		if ($.browser.version*1 < 8) {
			if ( $('.catalog-brends').length ) {
				 var cbl = $('.catalog-brends > ul > li').length;
				 $('.catalog-brends > ul > li').each(function(i){
				 	$(this).css({'z-index': cbl}).find('> a').append(' ')
				 	cbl--;
				 });
			}
		}
	}


});

