﻿
Mashup = function(){};

$j.extend(Mashup.prototype, {
    LiveURL: 'http://www.castroledgethailand.com',
    DefaultMessage: '',
    ShareURL: null,
    ShareMessage: null,
    ShareFacebook: function(){
        var t = this;
        window.open("http://www.facebook.com/sharer.php?u="+t.ShareURL);
    },
    ShareTwitter: function(){
        var t = this;
        var text = t.ShareMessage +  ' ' + t.ShareURL;
        window.open("http://twitter.com/home?status="+text);
    },
    ShareFacebookDefault: function(){
        var t = this;
        window.open("http://www.facebook.com/sharer.php?u="+t.LiveURL);
    },
    ShareTwitterDefault: function(){
        var t = this;
        var text = t.DefaultMessage;
        window.open("http://twitter.com/home?status="+text);
    },
    
    Init : function(){
        
    }
});