$(function(){	// shorthand for $(document).ready() BTW	
	
	$.fn.media.defaults.flvPlayer = basehref+'gui/media/flvplayer.swf';
	//$.fn.media.defaults.params = { autoplay: true };
	
	$('div.media p a').media({ 
		width:     430, //4
		height:    343, //3 + 21 controlbar
		autoplay:  true, 
		
		src: $(this).attr('href'),
		
		attrs:     { autoplay:  true,  autostart:  true, controlbar: 'none' },  // object/embed attrs 
		params:    { autoplay: true, autostart: true, controlbar: 'none' }, // object params/embed attrs 
		caption:   false // supress caption text 
	}); 
	
});
