$(function() {	
	//search
	var org = $("[name=simple_name]").val();
	$("[name=simple_name]").focus(function() {
		if( $(this).val() != '') {
			if( $(this).val() == 'Prekės paieška' || $(this).val() == 'Product search' || $(this).val() == 'Поиск товара'  ) {
				$(this).css({
					color: "#a8aaad"
				})
			}
		}
	}).blur(function() {
		$(this).css({
			color: "#2c2b2a"
		})
	});
	
	var org2 = $("[name=simple_name]").val();
	$("[name=simple_name]").bind("keydown", function() {
		if( $(this).val() != '') {
			//if( $(this).val() == org2  ) {
			if( $(this).val() == 'Prekės paieška' || $(this).val() == 'Product search' || $(this).val() == 'Поиск товара'  ) {
				$(this).css({ color: "#2c2b2a" }).val('');
			}
		}
	})
	
	
	var org3 = $("[name=simple_name]").val();
	$("[name=simple_name]").blur(function() {
		if( $(this).val() == '' ) {
			$(this).val( org3 );
		}
	});
	
	//main catalog meniu click hander
	$('.cont_top_catalog').click(function(e) {
		e.preventDefault();
		$('.catalog-item-a-sub-cont').not($(this).next('div:first')).each(function() {
			$(this).slideUp(120);
		});
		if( $(this).next('div:first').css('display') == 'none' ) {
			$(this).next('div:first').slideDown(180).show();
		} else {
			$(this).next('div:first').slideUp(120);
		}
	});	
	
	//main catalog meniu click hander
	$('.cont_top_catalog-2').click(function(e) {
		e.preventDefault();
		$('.catalog-item-a-sub-cont-2').not($(this).next('div:first')).each(function() {
			$(this).slideUp(120);
		});
		if( $(this).next('div:first').css('display') == 'none' ) {
			$(this).next('div:first').slideDown(180).show();
		} else {
			$(this).next('div:first').slideUp(120);
		}
	});
	
	//main catalog meniu top hover hander
	$('.catalog_dropdown_h').hover(
		function() {
	
			$(this).css({ zIndex:'900' });
			
			$(this).find('a:first').find('span').css({ background:'url(./client/img/main-top-catalog-bg.gif) repeat-x' });
			//$(this).find('a:first').find('span').css({ background:'url(./client/img/main-top-catalog-bg.gif) repeat-x', paddingLeft:'7px', paddingRight:'7px' });
			
			$(this).find('.catalog_dropdown').css({ zIndex:'900' }).slideDown(180).show();
			
			$('.main-top-catalog-bg-corner').show().css({ zIndex:'1000' });
			
		}, 
		function() {
			$(this).find('a:first').find('span').css({ backgroundImage:'none', paddingLeft:'5px', paddingRight:'5px'  });
			//$(this).find('a:first').find('span').css({ backgroundImage:'none', paddingLeft:'0px', paddingRight:'0px' });
			
			$('.main-top-catalog-bg-corner').hide();
			
			$('.catalog_dropdown').slideUp(140).stop(true, true).slideUp();
			
			
		}
	)
	
	$('.catalog_dropdown').hover(function() {
	}, function(){
		$('.main-top-catalog-bg-corner').hide();
		$(this).slideUp(140);
		$(this).prev('a:first').find('span').css({ backgroundImage:'none', paddingLeft:'5px', paddingRight:'5px' });
	});
	
	
});
