
        $.fn.maphilight.defaults = {
	        fill: true,
    	    fillColor: 'faceab',
    	    fillOpacity: 0.4,
        	stroke: true,
	        strokeColor: '000000',
        	strokeOpacity: 1,
            strokeWidth: 1,
    	    fade: true,
    	    alwaysOn: false,
            neverOn: false,
    	    groupBy: false
        }
        
        $(function() {
            $('.map').maphilight();
            $('#hilightlink').mouseover(function(e) {
                $('#square2').mouseover();
            }).mouseout(function(e) {
                $('#square2').mouseout();
            }).click(function(e) { e.preventDefault(); });
            $('#starlink').click(function(e) {
                e.preventDefault();
                var data = $('#star').data('maphilight') || {};
                data.neverOn = !data.neverOn;
                $('#star').data('maphilight', data);
            });
            $('#starlink2').click(function(e) {
                e.preventDefault();
                var data = $('#star').data('maphilight') || {};
                data.alwaysOn = !data.alwaysOn;
                $('#star').data('maphilight', data).trigger('alwaysOn.maphilight');
            });
            /*$('#a7').mouseover(function(e) {
                $('#info').html('eto ti sad');
            });*/
        });

