function toggleOtherMedia(action) {
if(action == 'show') {
var toShow = 'show';
var toHide = 'hide';
}
else {
var toShow = 'hide';
var toHide = 'show';
}
$(toShow).fadeIn('fast',function() {});
$(toShow).fadeOut('fast',function() {});
}
		
		
