$(document).ready(function() {

	var br_height = $(document).height();
	var br_width = $(window).width();
	
	var left_pos = 1793 - br_width;
	left_pos = left_pos / 2;
	
	$('body').css('background-position','-'+left_pos+'px 0px');

	// calculate and set the star position when the window is resized	
	$(window).resize(function () {
	
	var br_height = $(document).height();
	var br_width = $(window).width();
	
	var left_pos = 1793 - br_width;
	left_pos = left_pos / 2;
	
	$('body').css('background-position','-'+left_pos+'px 0px');
	
	})

});

function anketa(id) {
    $.ajax({
        url: "/ajaxReq.php",
        type: "POST",
        data: "type=anketa&id="+id,
        success: function(html) {
            $("#anketa_results").empty();
            $("#anketa_results").append(html).fadeIn('normal');
        }
    });
}

function getChecked() {
    var x = document.getElementsByName("radio1");
    for(var i=0;i<x.length;i++) {
        if(x[i].checked == true) {
            return x[i].value;
        }
    }
}

function magazin(mesec) {
    $.ajax({
        url: "/ajaxReq.php?type=magazin",
        type: "POST",
        data: "mesec="+mesec,
        success: function(html) {
            $("#magPrev").empty();
            $("#magPrev").append(html).fadeIn('normal');
        }
    });
}
