(function($) {
    $.fn.cn_malp = function() {
        this.each(function(){
            var obj = $(this);
            var txt = obj.html().replace(RegExp('-at-','i'), '@');
            obj.html('<a href="mailto:' + txt + '">' + txt + '</a>');
        });
    };
})(jQuery);

(function($) {
    $.fn.cn_set_dropdown = function(options) {
        
        var defaults = {			
    		lang:'hr'
    	};
    	
        var options = $.extend(defaults, options);
        
        this.each(function(){
            var obj = $(this);
            obj.change(function() {
                var id = this.id;
                var type = id.split('-')[1];
                var val = this.value;
                var targetUrl = '/' + options.lang + '/' + type + '/#' + val;
                document.location = targetUrl;
                return false;
            });
        });
    };
})(jQuery);
































