function showMSUView(num){
	showVideo(num);
	
	document.getElementById("msuview_big").style.display = "block";
	document.getElementById("box_story").style.display = "none";
	document.getElementById("home_panel").style.display = "none";
}
function hideMSUView(){
	hideVideo();
	document.getElementById("msuview_big").style.display = "none";
	document.getElementById("box_story").style.display = "block";
	document.getElementById("home_panel").style.display = "block";
}
function showVideo(num){
	var str;
	
	str = "<div class=\"home_msuview_big_copy\"><h2>"+arrTxtHead[num]+"</h2><p>"+arrTxtCopy[num]+"</p></div>";
	str += "<object width=\"542\" height=\"300\"><param name=\"movie\" value=\""+arrVidURL[num]+"\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><param name=\"wmode\" value=\"transparent\"></param>";
	str += "<embed src=\""+arrVidURL[num]+"\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" wmode=\"transparent\" width=\"542\" height=\"300\"></embed></object>";
	str += "<div id=\"vid_shadow\"></div>";
	//<img alt=\"\" title=\"\" src=\"/_files/images/home/panel_msuview_big_shadow.png\" id=\"vid_shadow\">";
	
	document.getElementById("msuview_big_vid").innerHTML = str;
	document.getElementById("msuview_big_slider").className = " showingVideo" + num;
	
	bigSlider.slideTo(Math.floor(num/3) + 1);
}
function hideVideo(){
	document.getElementById("msuview_big_vid").innerHTML = "";
}
function showBubble(str){
	document.getElementById(str).style.display="block";
}
function hideBubble(str){
	document.getElementById(str).style.display="none";
}

$(document).ready(function(){

	$('#social_feed').cycle({ 
    		fx:      'scrollDown', 
    		speed:   500,
    		timeout: 7500,
    		pause:   1 
	});
	
});

