/**
 * Initialize the Plag object.
 */
MeLikeMC = {
    init: function() {
    },
	Video: {
    	Load: function(sYoutubeCode) {
    		var sYoutubeUrl = 'http://www.youtube.com/v/'+sYoutubeCode+'?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;autoplay=1';
    		var el = $('#stage object');
    		
    		$('#stage img').addClass('hide');
    		el.removeClass('hide');
    		el.find('param[name=movie]').attr('value', sYoutubeUrl);
    		el.find('embed').attr('src', sYoutubeUrl);			
    	}
	}
}

// Run any/all init functions.
$(document).ready(function() {	
	MeLikeMC.init();
});
