$(document).ready(function() {
	// shadowed images
	$('.shadowed-image-left').wrap('<span class="shadowed-wrap-left"></span>').css({'float':'none','margin-right':'0'});
	$('.shadowed-image-right').wrap('<span class="shadowed-wrap-right"></span>').css({'float':'none','margin-left':'0'});
	//zebra
	$(".zebra tr:nth-child(even),.zebra li:nth-child(even)").addClass("even");
	// expandable nav list
	$('.content-wrapper,.crumbs,.footer').click(function () {
		$('.expandable ul').hide();
		$('.expandable a:first-child').removeClass('active');
	});
	$('.expandable').click(function () {
		$('.expandable ul').toggle();
		$('.expandable a:first-child').toggleClass('active');
		return true;
	});
        $('#rating ul li a').click(function () {
            $.post($('#rating').attr("action"), {"voit": "1", "rat": $(this).text()}, function(data){
                if (data == 'false') {
                    alert('Вы уже проголосовали!');
                } else {
                    $('#rating .current-rating').attr('style', 'width:'+data+'%;');
                }
            });
            return false;
        });
});

function toggle(to){
    $('#'+to).toggle();
}

function change(){
    var a=document.getElementById('cb1').value;
    var b=document.getElementById('cb2').value;
    var c=document.getElementById('cb3').value;
    if (a != 0 && b != 0 && c != 0) document.location = 'sellers.htm?' + a + '&' + b + '&' + c;
    if (a != 0 && b != 0 && c == 0) document.location = 'sellers.htm?' + a + '&' + b;
    if (a != 0 && b == 0 && c != 0) document.location = 'sellers.htm?' + a + '&' + c;
    if (a == 0 && b != 0 && c != 0) document.location = 'sellers.htm?' + b + '&' + c;
    if (a != 0 && b == 0 && c == 0) document.location = 'sellers.htm?' + a;
    if (a == 0 && b != 0 && c == 0) document.location = 'sellers.htm?' + b;
    if (a == 0 && b == 0 && c != 0) document.location = 'sellers.htm?' + c;
    if (a == 0 && b == 0 && c == 0) document.location = 'sellers.htm';
}