// JavaScript Document

//Simple function to change display property of DIV's

function showInfo(id,id2){
				if (document.getElementById(id).style.display == "") 
					{
					document.getElementById(id2).style.display = "";
					document.getElementById(id).style.display = "none";
					}
				else 
					{
					document.getElementById(id).style.display = "";	
					document.getElementById(id2).style.display = "none";
					}
			}

function showInfo2(id){
				if(document.getElementById(id).style.display == ""){
				document.getElementById(id).style.display = "none";
				}else{
					document.getElementById(id).style.display = "";
				}
			}

//-->
$(document).ready(function() {
	 
	$(".swapexpand").click(function(){
		if($(this).attr('src') == '_ui/media/innerpages/contentlevel_2/expand.gif')
		{
			$(this).attr('src','_ui/media/innerpages/contentlevel_2/close.gif');
		}
		else
		{
			$(this).attr('src','_ui/media/innerpages/contentlevel_2/expand.gif');
		}
		
	});    
	
	$(".video_demo").click(function(){
		$('#ContentContainer').show();
		$('#Interactive').hide();
		$('#Interactive-expanded').show();
	}); 	
	
 });
