$(window).load(function(){
	$(".leftMenu2 img").click(function(){

		$(this).parents('ul:first').find("li.active>ul", ".leftMenu2").slideUp("normal", function(){
			$(this).parents('ul:first').find("li.active", ".leftMenu2").removeClass("active");
		});


		if(!$(this).parent().hasClass("active")) {
			$(this).parent().find("ul", ".leftMenu2").slideDown("normal", function(){
				$(this).parent().addClass("active");
			});
		}
		return false;
	});

	$(".jqTheme").bind("change", function(){
        if('common' == $(this).val()) {
            $('#jqTheme').text('Тематика');
        } else {
            $('#jqTheme').text('Модель TV / DVD');
        }
		return false;
	});


    if('common' == $(".jqTheme").val()) {
        $('#jqTheme').text('Тематика');
    } else {
        $('#jqTheme').text('Модель TV / DVD');
    }

});


function video (id, width, height) {

    width = width;
    height = height+41;
    var winLeft   = (screen.width - width) / 2;
    var winTop    = (screen.height - height) / 2;
    var options   = 'toolbar=no,status=no,resizable=yes, scrollbars=no';
    options += ',width=' + width;
    options += ',height=' + height;
    options += ',left=' + winLeft;
    options += ',top=' + winTop;
    url = '/popup-video.php?&id='+id;

    window.open(url, 'ChildWindow', options);
}
