$(document).ready(function() {

	$("img[src$=png], .menu-label, #svitok-bottom, .menu-label-big, .menu-label-big-right, #foto-ramka").pngfix({});
	

	$('.foto').zoomimage({hideSource:true,centered: true});

	
    $('a[rel*=facebox]').facebox() ;
    
     $('#vote-link').bind('click', function() {
                        $('#vote-form').ajaxSubmit({
                            target: '#vote-form'
                        });
                        return false; // <-- important!
                    });
 
 $('#gb_send').bind('click', function() {
                        $('#gb_form').ajaxSubmit({
                            target: '#gb_response'
                        });
						var time = new Date().getTime(); 
						var src = $('#captcha').attr('src');
						$('#captcha').attr('src',src + '&t='+ time);
                        return false; // <-- important!
                    });
					
	$('.shops').hide();
	$('.texts').hide();
	
 $('#texts').change(function(){
	$('.texts').show();
	$('.shops').hide();
 
 })

  $('#shops').change(function(){
	$('.texts').hide();
	$('.shops').show(); 
 })

});


