﻿// JavaScript Document
$(document).ready(function()
{
	$(".login input[name^='USER_LOGIN']").attr('placeholder',"Логин")  
	$(".login input[name^='USER_PASSWORD']").attr('placeholder',"Пароль") 
	$(".search input[name^='q']").attr('placeholder',"Поиск") 
    
    $("#content-inner-left ul li.has-child a:eq(0)").click(function(){
        $(this).parent().toggleClass('show');
        return false
    })
    
    $("#catalog-current-item-comment").tabs()
$('#top-search select').change(function(){
    $('#top-search form').submit()
})
})
