﻿
(function ($) {
    $.fn.corner = function (options) {
        var defaults = {
            topLeft: 'corner-top-left',
            top: 'corner-top-center',
            topRight: 'corner-top-right',
            left: 'corner-middle-left',
            right: 'corner-middle-right',
            bottomLeft: 'corner-bottom-left',
            bottom: 'corner-bottom-center',
            bottomRight: 'corner-bottom-right'
        };
        var conerOptions = $.extend(defaults, options);
        this.prepend("<div class='" + conerOptions.topLeft + "'></div>");
        this.prepend("<div class='" + conerOptions.top + "'></div>");
        this.prepend("<div class='" + conerOptions.topRight + "'></div>");
        this.prepend("<div class='" + conerOptions.left + "'></div>");
        this.prepend("<div class='" + conerOptions.right + "'></div>");
        this.prepend("<div class='" + conerOptions.bottomLeft + "'></div>");
        this.prepend("<div class='" + conerOptions.bottom + "'></div>");
        this.prepend("<div class='" + conerOptions.bottomRight + "'></div>");

    };
})(jQuery);

$(document).ready(function () {
    $('.selected-menu-item').corner();
    $('div.headlink ul').corner();
    var cornerStyle = {
        topLeft: 'corner-t-top-left', top: 'corner-t-top-center', topRight: 'corner-t-top-right', left: 'corner-t-middle-left',
        right: 'corner-t-middle-right', bottomLeft: 'corner-t-bottom-left', bottom: 'corner-t-bottom-center', bottomRight: 'corner-t-bottom-right'
    };
    $('#why_prima').corner(cornerStyle);
    $('#tab_container').corner(cornerStyle);
    $('.neatly-list').corner(cornerStyle);
    $('.instruction').corner(cornerStyle);
    $('.partner').corner(cornerStyle);
    $('.sellers').corner(cornerStyle);
    $('#map_container').corner(cornerStyle);
    $('.with-corner').corner(cornerStyle);
});
