var lmpShare =

{
	init: function(){
        jQuery('.facebook-button,.twitter-button').bind('click',lmpShare.clickListener);
	},

    clickListener: function(event){
        lmpShare.shareOpen(event,this);
    },

    shareOpen: function(event,a){
        var href = a.href;
        window.open(href, "shareOpen", "width=600, height=600, location, status, scrollbars, resizable");
        event.preventDefault();
    }
};

lmpShare.init();
