// JavaScript Document for Martini

//menu
function findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function nbGroup(event, grpName) { //v6.0
var i,img,nbArr,args=nbGroup.arguments;
  if (event == "init" && args.length > 2) {
    if ((img = findObj(args[2])) != null && !img.init) {
      img.init = true; img.up = args[3]; img.dn = img.src;
      if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
      nbArr[nbArr.length] = img;
      for (i=4; i < args.length-1; i+=2) if ((img = findObj(args[i])) != null) {
        if (!img.up) img.up = img.src;
        img.src = img.dn = args[i+1];
        nbArr[nbArr.length] = img;
    } }
  } else if (event == "over") {
    document.nbOver = nbArr = new Array();
    for (i=1; i < args.length-1; i+=3) if ((img = findObj(args[i])) != null) {
      if (!img.up) img.up = img.src;
      img.src = (img.dn && args[i+2]) ? args[i+2] : ((args[i+1])?args[i+1] : img.up);
      nbArr[nbArr.length] = img;
    }
  } else if (event == "out" ) {
    for (i=0; i < document.nbOver.length; i++) { img = document.nbOver[i]; img.src = (img.dn) ? img.dn : img.up; }
  } else if (event == "down") {
    nbArr = document[grpName];
    if (nbArr) for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.up; img.dn = 0; }
    document[grpName] = nbArr = new Array();
    for (i=2; i < args.length-1; i+=2) if ((img = findObj(args[i])) != null) {
      if (!img.up) img.up = img.src;
      img.src = img.dn = (args[i+1])? args[i+1] : img.up;
      nbArr[nbArr.length] = img;
  } }
}

function preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.p) d.p=new Array();
    var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
}
//end of menu


//newsfeed
var xmlhttp;
var xmlfile;
var start;
var size;

function loadXMLDoc(myXMLFile, myStart, mySize) {
    xmlfile = myXMLFile;
    start = myStart;
    size = mySize;
    
    xmlhttp=null;
    if (window.XMLHttpRequest) {
        // code for IE7, Firefox, Mozilla, etc.
        xmlhttp=new XMLHttpRequest();
    } else if (window.ActiveXObject) {
        // code for IE5, IE6
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    if (xmlhttp!=null) {
        xmlhttp.onreadystatechange=onResponse;
        xmlhttp.open("GET",xmlfile,true);
        xmlhttp.send(null);
    } else {
        alert("Your browser does not support XMLHTTP.");
    }
}

function onResponse() {
    if(xmlhttp.readyState!=4) return;
    if(xmlhttp.status!=200) {
        alert("Problem retrieving XML data");
        return;
    }

	txt="<table style='border:none' width='100%'>";

    var items=xmlhttp.responseXML.documentElement.getElementsByTagName("item");
    var finish = (start+size>items.length)?items.length:start+size;

    for (i=start;i<finish;i++) {
        txt=txt + "<tr>";
        title=items[i].getElementsByTagName("title");
        desc=items[i].getElementsByTagName("description");
        date=items[i].getElementsByTagName("pubDate");
        {
            try
            {
                txt=txt + "<td>"
                txt=txt + "<h4><span>" + title[0].firstChild.nodeValue + "</span></h4>";
                txt=txt + "<p class='p1'><span>" + desc[0].firstChild.nodeValue + "</span></p>";
                txt=txt + "<p class='p2'><span>" + date[0].firstChild.nodeValue + "</span></p>";
                txt=txt + "</td>"
            }
            catch (er)
            {
                txt=txt + "<td> </td>";
            }
        }
        txt=txt + "</tr>";
    }
    
    txt=txt + "</table>";
	
    txt=txt + "<th><tr>";
    txt=txt + "<a href=\"javascript:void(0);\" onclick=\"loadXMLDoc('" + xmlfile + "',0," + size + ");\">first</a>";
    txt=txt + "&nbsp;<a href=\"javascript:void(0);\" onclick=\"loadXMLDoc('" + xmlfile + "'," + ((start-size>=0)?start-size:0) + "," + size + ");\">prev</a>";
    txt=txt + "&nbsp;<a href=\"javascript:void(0);\" onclick=\"loadXMLDoc('" + xmlfile + "'," + ((finish<=items.length-size)?finish:items.length-size) + "," + size + ");\">next</a>";
    txt=txt + "&nbsp;<a href=\"javascript:void(0);\" onclick=\"loadXMLDoc('" + xmlfile + "'," + (items.length-size) + "," + size + ");\">last</a>";
    txt=txt + "</tr></th>";
	
    document.getElementById('today').innerHTML=txt;
}
//end of newsfeed

//expand visibility
function expand(thistag){
	styleObj=document.getElementById(thistag).style;
	if(styleObj.display=='none'){styleObj.display='';}
	else {styleObj.display='none';}
}

function gainfocus(thistag){
	styleObj=document.getElementById(thistag).style;
	if(styleObj.display=='none'){styleObj.display='';}
	else {styleObj.display='';}
}
	
function losefocus(thistag){
	styleObj=document.getElementById(thistag).style;
	styleObj.display='none';
}
//end of expand

//chugger code
function resetFlash(){
	txt = "<h3><span>Reels</span></h3>";
	txt += "<div id=\"reel_narrative\">";
	txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('narrative_sm'),losefocus('reality_sm'),losefocus('commercial_sm'),losefocus('epk_sm'),losefocus('documentary_sm'),losefocus('corporate_sm');\">Narrative</a></span></h5>";
	txt += "<div id=\"narrative_sm\" style=\"display:none\">";
	txt += "<div id=\"foolmeonce\" class=\"reel_small\"></div><div id=\"blinded\" class=\"reel_small\"></div><div id=\"pushingtheenvelope\" class=\"reel_small\"></div><div id=\"thursdayafternoon\" class=\"reel_small\"></div><div id=\"ElTux\" class=\"reel_small\"></div><div id=\"backupplease\" class=\"reel_small\"></div><div id=\"haroldandkumar\" class=\"reel_small\"></div><div id=\"storylineonline\" class=\"reel_small\"></div></div></div>";
	txt += "<div id=\"reel_reality\"><h5><span><a href=\"javascript:void(0);\" onclick=\"expand('reality_sm'),losefocus('narrative_sm'),losefocus('commercial_sm'),losefocus('epk_sm'),losefocus('documentary_sm'),losefocus('corporate_sm');\">Reality</a></span></h5><div id=\"reality_sm\" style=\"display:none\">";
	txt += "<div id=\"antonio\" class=\"reel_small\"></div><div id=\"RockBottom\" class=\"reel_small\"></div><div id=\"RockBottom\" class=\"reel_small\"></div><div id=\"yourrealitychecked\" class=\"reel_small\"></div><div id=\"dinnerparty\" class=\"reel_small\"></div><div id=\"FamilyJewels\" class=\"reel_small\"></div><div id=\"minutesoffame\" class=\"reel_small\"></div><div id=\"secrets\" class=\"reel_small\"></div><div id=\"sex2k\" class=\"reel_small\"></div></div></div>";
	txt += "<div id=\"reel_commercial\"><h5><span><a href=\"javascript:void(0);\" onclick=\"expand('commercial_sm'),losefocus('narrative_sm'),losefocus('reality_sm'),losefocus('epk_sm'),losefocus('documentary_sm'),losefocus('corporate_sm');\">Commercial/Promo/PSA</a></span></h5><div id=\"commercial_sm\" style=\"display:none\">";
	txt += "<div id=\"mcbPromo\" class=\"reel_small\"></div><div id=\"sagPromo\" class=\"reel_small\"></div><div id=\"ItsMyPier\" class=\"reel_small\"></div><div id=\"whatislove\" class=\"reel_small\"></div><div id=\"olivegarden\" class=\"reel_small\"></div><div id=\"firstbookpsa\" class=\"reel_small\"></div><div id=\"jcpenny\" class=\"reel_small\"></div><div id=\"verizonpsa\" class=\"reel_small\"></div><div id=\"topstepshuffle\" class=\"reel_small\"></div><div id=\"lexington\" class=\"reel_small\"></div><div id=\"finishourmovie\" class=\"reel_small\"></div><div id=\"pacam\" class=\"reel_small\"></div><div id=\"edmark\" class=\"reel_small\"></div><div id=\"housewife\" class=\"reel_small\"></div></div></div>";
	
	txt += "<div id=\"reel_documentary\"><h5><span><a href=\"javascript:void(0);\" onclick=\"expand('documentary_sm'),losefocus('narrative_sm'),losefocus('reality_sm'),losefocus('commercial_sm'),losefocus('epk_sm'),losefocus('corporate_sm');\">Documentary</a></span></h5><div id=\"documentary_sm\" style=\"display:none\">";
	txt += "<div id=\"POPTrailer\" class=\"reel_small\"></div><div id=\"texas\" class=\"reel_small\"><div id=\"bali1\" class=\"reel_small\"></div></div><div id=\"OFTLR\" class=\"reel_small\"></div><div id=\"dirtyPoole\" class=\"reel_small\"></div><div id=\"whenboysfly\" class=\"reel_small\"></div><div id=\"haunted\" class=\"reel_small\"></div><div id=\"bali2\" class=\"reel_small\"></div><div id=\"famSentence\" class=\"reel_small\"></div><div id=\"panchobarnes\" class=\"reel_small\"></div><div id=\"pageant\" class=\"reel_small\"></div></div></div><div id=\"buffer\"><h1><span>This line to buff</span></h1></div>";
	
	txt += "<div id=\"reel_epk\"><h5><span><a href=\"javascript:void(0);\" onclick=\"expand('epk_sm'),losefocus('narrative_sm'),losefocus('reality_sm'),losefocus('commercial_sm'),losefocus('documentary_sm'),losefocus('corporate_sm');\">EPK/BTS/DVD</a></span></h5><div id=\"epk_sm\" style=\"display:none\">";
	txt += "<div id=\"homeroom\" class=\"reel_small\"></div><div id=\"texaschainsaw\" class=\"reel_small\"></div><div id=\"therealcancun\" class=\"reel_small\"></div><div id=\"volcanohigh\" class=\"reel_small\"></div><div id=\"lordoftherings\" class=\"reel_small\"></div><div id=\"lifeasahouse\" class=\"reel_small\"></div></div></div>";
	
			
	document.getElementById('reel').innerHTML=txt;
	
	chugger('Fool Me Once','foolmeonce');
	chuggerWide('Blinded','blinded');
	chugger('Pushing the Envelope','pushingtheenvelope');
	chugger('Thursday Afternoon','thursdayafternoon');
	chuggerNorm('El Tux','ElTux');
	chugger('Back Up Please','backupplease');
	chugger('Harold and Kumar','haroldandkumar');
	chugger('Storyline Online','storylineonline');
	chuggerNorm('Rock Bottom','RockBottom');
	chugger('Your Reality Checked','yourrealitychecked');
	chugger('Dinner Party','dinnerparty');
	chuggerNorm('Gene Simmons Family Jewels','FamilyJewels');
	chugger('15 Minutes with Fame','minutesoffame');
	chugger('Secrets','secrets');
	chugger('Sex 2K','sex2k');
	chuggerWide('Martini Promo','mcbPromo');
	chuggerWide('SAG Foundation Promo','sagPromo');
	chuggerWide('It\'s My Pier','ItsMyPier');
	chugger('What is Love','whatislove');
	chugger('Olive Garden','olivegarden');
	chugger('First Book PSA','firstbookpsa');
	chugger('JC Penny','jcpenny');
	chugger('Verizon PSA','verizonpsa');
	chugger('Top Step Shuffle','topstepshuffle');
	chugger('Lexington','lexington');
	chugger('Finish Our Movie','finishourmovie');
	chugger('Homeroom','homeroom');
	chugger('Texas Chainsaw','texaschainsaw');
	chugger('The Real Cancun','therealcancun');
	chugger('Volcano High','volcanohigh');
	chugger('Lord of the Rings','lordoftherings');
	chugger('Life as a House','lifeasahouse');
	chuggerWide('POPATOPOLIS','POPTrailer');
	chuggerWide('Out for the Long Run','OFTLR');
	chuggerWide('Dirty Poole','dirtyPoole');
	chugger('When Boys Fly','whenboysfly');
	chugger('Pancho Barnes','panchobarnes');
	chuggerNorm('Pageant','pageant');
	chugger('Pac AM','pacam');
	chugger('Edmark','edmark');
	chugger('Housewife','housewife');
}

function comment(myComment){
	desc = myComment;
	
	if(desc == 'foolmeonce'){
		text = "<h5><span>Fool Me Once</span></h5><br />";
		text += "<p class=\"p1\"><span>Produced by Imaginaut Entertainment, this Super 16mm short was directed by Paco Farias and premiered at the Tribeca Film Festival in 2007:<br /><br />Maureen Ackerman (Sharon Lawrence, NYPD Blue, Hidden Palms), a clever, coquettish housewife, starts her day like any other - the morning crossword, tea, breakfast. She sees her husband (Tom Irwin, My So-Called Life, Saving Grace) off with an obligatory kiss and a wave.  Then her lover (Carlos Gomez, Desperado, 24, Shark) arrives.  After seducing her, he gives her a beautiful diamond necklace and challenges her to get it past her watchful husband.<br /><br />Intrigued by the diamonds and the dare, Maureen concocts a plan involving a pawnshop and a \"lost\" claim ticket. What follows is a game of deception and greed where the tables turn and even the best-laid plans are unraveled.<br /><ul><li>Tribeca Film Festival 2007</li><li>Methodfest 2007<br />&nbsp;&nbsp;&nbsp;- Best Actress in a Short: Sharon Lawrence<li>Stonybrook Film Festival 2007<br />&nbsp;&nbsp;&nbsp;- Best Short Film</li><li>Palm Springs Short Film Festival 2007</li><li>Waterfront Film Festival 2007</li><li>Beverly Hills short Film Festival 2007</li><li>Los Angeles Latino International Film Festival 2007</li></ul><i>\"This is a short I'm sure you'll enjoy - amazing production value, great story and actors, it's everything a good short should be.  It's one of those I watch the first time for fun, and then again to learn.\" ---- SECONDCINEMA.COM</i></span></p>";
	}
	
	if(desc == 'blinded'){
		text = "<h5><span>Blinded</span></h5><br />";
		text += "<p class=\"p1\"><span>Produced and photographed by Imaginaut Entertainment as an experiment in 24h filmmaking. This short was written, shot and edited in one 24h period.<br /><br />Shot using HVX200 in standard definition utilizing P2 card technology and DVX100B recording directly to hard drives.<br /><br />A woman suspects her husband of adultery. The private investigator claims the husband is innocent, but strangely refuses to turn over surveillance photos.</span></p>";
	}
	
	if(desc == 'pushingtheenvelope'){
		text = "<h5><span>Pushing the Envelope</span></h5><br />";
		text += "<p class=\"p1\"><span>Produced by Imaginaut Entertainment. Harsh lighting and aggressive camera moves compliment the frenetic pace and questionable morals of the world of paparazzi newsmen.<br /><br /><i>In the dog-eat-dog world of tabloid photography, friendship erodes into blackmail as a bidding war erupts between editor and photographer, where privacy becomes the most valuable commodity of all.</i></span></p>";
	}
	
	if(desc == 'thursdayafternoon'){
		text = "<h5><span>Thursday Afternoon</span></h5><br />";
	}
	
	if(desc == 'ElTux'){
		text = "<h5><span>El Tux</span></h5><br />";
		text += "<p class=\"p1\"><span><i>When Bobby's dream girl invites him to her Quinceanera, he can't find a tuxedo large enough, and he's forced to wear his father's wide-lapeled 1972 monstrosity. But it may be a blessing in disguise...</i></span></p>";
	}
	
	if(desc == 'backupplease'){
		text = "<h5><span>Back Up Please</span></h5><br />";
		text += "<p class=\"p1\"><span>Produced by Horn of the Moon Productions, this suspense-drama was photographed by Imaginaut Entertainment in High-Definition on the Sony F-900. Watch for the subtlety in lighting differences between the opposing characters – the low-contrast, controlled lighting of the Mercedes stands in opposition to the harsh shadows and blown highlights of the less-fortunate couple in the Pontiac.</span></p>";
	}
	
	if(desc == 'haroldandkumar'){
		text = "<h5><span>Harold and Kumar</span></h5><br />";
		text += "<p class=\"p1\"><span>Produced by Imaginaut Entertainment for MTV, this short segment starring John Cho and Kal Penn spoofs their characters in Harold and Kumar Go to White Castle. This time the deficient duo find themselves unable to locate the MTV Movie Awards.</span></p>";
	}
	
	if(desc == 'storylineonline'){
		text = "<h5><span>Storyline Online</span></h5><br />";
		text += "<p class=\"p1\"><span>Designed to give children with internet access the opportunity to hear an adult they recognize reading to them, this Imaginaut-produced series promotes literacy and stars the likes of Jason Alexander, Elijah Wood, and Al Gore.</span></p>";
	}

	if(desc == 'RockBottom'){
		text = "<h5><span>Rock Bottom</span></h5><br />";
		text += "<p class=\"p1\"><span>\"Rock Bottom\" is a reality show on FUSE Network described as \"Intervention\" meets \"Behind the Music\". Martini Crew Booking brought cool heads to incendiary situations, and gave the show a restless, unsettled feel to reflect the unpredictable and dangerous crossroads of the music and drug scene in Hollywood.</span></p>";
	}

	if(desc == 'yourrealitychecked'){
		text = "<h5><span>Your Reality Checked</span></h5><br />";
		text += "<p class=\"p1\"><span>Filmgarden Entertainment hired Imaginaut to create this blend of beautifully-lit interviews and high-energy reality scenes.</span></p>";
	}
	
	if(desc == 'dinnerparty'){
		text = "<h5><span>Dinner Party</span></h5><br />";
		text += "<p class=\"p1\"><span>Produced by Imaginaut Entertainment, this talkshow pilot stars wonderful character actors, including James Cromwell, Tess Harper, and Hector Elizondo.</span></p>";
	}

	if(desc == 'FamilyJewels'){
		text = "<h5><span>Gene Simmons Family Jewels</span></h5><br />";
	}

	if(desc == 'minutesoffame'){
		text = "<h5><span>15 Minutes with Fame</span></h5><br />";
		text += "<p class=\"p1\"><span>Starring Jennifer Garner, this entertainment episode was produced and directed by Imaginaut Entertainment for MTV.</span></p>";
	}
	
	if(desc == 'secrets'){
	text = "<h5><span>Secrets</span></h5><br />";
	text += "<p class=\"p1\"><span>Secrets of the Sexually Satisfied Woman, a special produced by World of Wonder for Bravo. The show’s producers brought in Imaginaut Entertainment to helm the 4-camera shoot while creating a soft and inviting yet active visual style.</span></p>";
	}
	
	if(desc == 'sex2k'){
	text = "<h5><span>Sex 2K</span></h5><br />";
	text += "<p class=\"p1\"><span>Produced by Imaginaut Entertainment for Straight Ahead and MTV, this episode of Sex2K focuses on a San Diegan who seeks to improve her self esteem and social live through lip injections of her own body fat. Surprisingly horrifying and humorous.</span></p>";
	}
	
	if(desc == 'mcbPromo'){
	text = "<h5><span>Martini Crew Booking Promo</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment produced this 15 second promo to showcase at the 2010 Hollyshorts Film Festival, and Martini Crew Booking was proud to support the event as one of their sponsors.</span></p>";
	}
	
	if(desc == 'sagPromo'){
	text = "<h5><span>SAG Foundation 25th Anniversary Promo</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment completed production and post of the new promo for the Screen Actors Guild Foundation. It was shot on a stage generously donated by Panavision with visual effects provided by Mark Intravartolo of Prime Focus.</span></p>";
	}
	
	if(desc == 'ItsMyPier'){
	text = "<h5><span>It's My Pier</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment was hired by Silhouette Films to use their RedOne Camera to create this commercial for the 100th Anniversary of the Santa Monica Pier, which aired on Time Warner Cable.</span></p>";
	}
	
	if(desc == 'whatislove'){
	text = "<h5><span>What is Love</span></h5><br />";
	text += "<p class=\"p1\"><span>A special promotion for ABC Family’s “Summer of Love”, this series of 16mm promos was produced by Omaha Pictures, who hired Imaginaut Entertainment cinematographers to establish a spontaneous, naturalistic intimacy on 16mm film.</span></p>";
	}
	
	if(desc == 'olivegarden'){
	text = "<h5><span>Olive Garden</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut pushed DigiBeta and a low budget to the limit in this Olive Garden commercial produced by Phantom Pictures.</span></p>";
	}
	
	if(desc == 'firstbookpsa'){
	text = "<h5><span>First Book PSA</span></h5><br />";
	text += "<p class=\"p1\"><span>Verizon hired Imaginaut Entertainment to produce, direct, and shoot this Public Service Announcement starring Eric Close.</span></p>";
	}
	
	if(desc == 'jcpenny'){
	text = "<h5><span>JC Penny</span></h5><br />";
	text += "<p class=\"p1\"><span>Phantom Pictures produced this JCPenny ad, asking Imaginaut Entertainment to provide a warm, glowy \"filmic\" feel on DigiBeta.</span></p>";
	}
	
	if(desc == 'verizonpsa'){
	text = "<h5><span>Verizon PSA</span></h5><br />";
	text += "<p class=\"p1\"><span>Sean Astin stars in this High Definition Public Service Announcement financed by Verizon, produced by Imaginaut Entertainment, and directed by Clay Westervelt.</span></p>";
	}
	
	if(desc == 'topstepshuffle'){
	text = "<h5><span>Top Step Shuffle</span></h5><br />";
	text += "<p class=\"p1\"><span>A 30-second spec commercial shot on DVCam in 4 hours as an experiment – photographed and produced by Imaginaut Entertainment.</span></p>";
	}
	
	if(desc == 'lexington'){
	text = "<h5><span>Lexington</span></h5><br />";
	text += "<p class=\"p1\"><span>For their music video premiere, the critically acclaimed rock band Lexington hired Imaginaut Entertainment to establish a fast-paced, hard-edged look while underlining their character-based storyline. This music video chronicles the devastating wake of a self-destructing relationship.</span></p>";
	}
	
	if(desc == 'finishourmovie'){
	text = "<h5><span>Finish Our Movie</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment produced this promo to showcase a new directing competition financed by BudTV and LivePlanet. This promo sets up the somewhat complicated contest succinctly and with a sense of humor.</span></p>";
	}
	
	if(desc == 'pacam'){
	text = "<h5><span>Pac AM</span></h5><br />";
	text += "<p class=\"p1\"><span>Phantom Pictures hired Imaginaut Entertainment to photograph this industrial with a special challenge: How do you make warehouses exciting?</span></p>";
	}
	
	if(desc == 'edmark'){
	text = "<h5><span>Edmark</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment was hired to establish a warm, affectionate look for this industrial video</span></p>";
	}
	
	if(desc == 'housewife'){
	text = "<h5><span>Housewife</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment was hired by Omaha Pictures to photograph these naturalistic promos for ABC Family on 16mm.</span></p>";
	}
	
	if(desc == 'homeroom'){
	text = "<h5><span>Homeroom</span></h5><br />";
	text += "<p class=\"p1\"><span>Imaginaut Entertainment produced this behind-the-scenes special doc for MOR Entertainment’s \"Homeroom\", starring Erika Christensen, Victor Garber, and Busy Phillips.</span></p>";
	}
	
	if(desc == 'texaschainsaw'){
	text = "<h5><span>Texas Chainsaw</span></h5><br />";
	text += "<p class=\"p1\"><span>When producing this segment for TRL, Imaginaut Entertainment brought in Infra-Red cameras to cover audience reactions to an advance screening of New Line’s \"Texas Chainsaw Massacre\".</span></p>";
	}
	
	if(desc == 'therealcancun'){
	text = "<h5><span>The Real Cancun</span></h5><br />";
	text += "<p class=\"p1\"><span>Martini flew to Mexico to cover this behind-the-scenes of the world’s first “reality feature”, a joint venture between Bunim-Murray and New Line Cinema. </span></p>";
	}
	
	if(desc == 'volcanohigh'){
	text = "<h5><span>Volcano High</span></h5><br />";
	text += "<p class=\"p1\"><span>MTV Films hired Imaginaut Entertainment to produce behind-the-scenes and interviews with rap idols Snoop Dogg, Andre 3000, Kelis, Lil’ Jon, and others.</span></p>";
	}
	
	if(desc == 'lordoftherings'){
	text = "<h5><span>Lord of the Rings</span></h5><br />";
	text += "<p class=\"p1\"><span>When it came time to shoot greenscreen interviews with the cast and crew of the Lord of the Rings trilogy, New Line Cinema requested Imaginaut Entertainment for our extensive experience in compositing and special effects. This sample is an excerpt from Arden Entertainment’s special for the WB entitled Back to Middle Earth.</span></p>";
	}
	
	if(desc == 'lifeasahouse'){
	text = "<h5><span>Life as a House</span></h5><br />";
	text += "<p class=\"p1\"><span>Martini Crew Booking photographers established a style of soft backgrounds and warm, shaped lighting for interviews in this HBO special documentary produced by Genuine Buck Film.</span></p>";
	}
	
	if(desc == 'POPTrailer'){
	text = "<h5><span>POPATOPOLIS</span></h5><br />";
	text += "<p class=\"p1\"><span>Jim cuts the shooting schedule, has the actors cook their own food, and reduces his electric package to just two lights so he can concentrate on his filmmaking philosophy, \"A Big Chase and A Big Chest.\"<br><br>Watch and laugh as Jim prepares to \"Pop some tops.\" A Documentary. <br><br> <a href='http://popatopolis.com' target='_blank'>www.popatopolis.com</a></span></p>";
	}
	
	if(desc == 'OFTLR'){
	text = "<h5><span>Out for the Long Run</span></h5><br />";
	text += "<p class=\"p1\"><span>Martini Crew Booking provided the operators and equipment to cover a broad range of shooting environments from coast to coast.<br><br> <a href='http://www.tragoidia.com/outforthelongrun.html' target='_blank'>Out for the Long Run</a></span></p>";
	}
	
	if(desc == 'dirtyPoole'){
	text = "<h5><span>Dirty Poole</span></h5><br />";
	text += "<p class=\"p1\"><span>Shooting tapeless on P2, Martini Crew Booking rigged an HPX500 with a 35mm adapter on a doorway dolly to bring elegant looking Broll for this documentary, Dirty Poole, which tells the story of a sometimes overlooked gay liberation and independent film making pioneer, Wakefield Poole.<br><br> <a href='http://www.dirtypoole.com/' target='_blank'>Dirty Poole</a></span></p>";
	}
	
	if(desc == 'whenboysfly'){
	text = "<h5><span>When Boys Fly</span></h5><br />";
	text += "<p class=\"p1\"><span>This critically-acclaimed documentary on the Gay Party Circuit was produced by New Voice Productions, who hired Imaginaut Entertainment for their ability to quickly establish a sincere rapport with strangers in this raw doc.</span></p>";
	}
	
	if(desc == 'panchobarnes'){
	text = "<h5><span>Pancho Barnes</span></h5><br />";
	text += "<p class=\"p1\"><span>Produced by NSDSS Productions, this documentary on the famous female aviator Florence \"Pancho\" Barnes is built around interviews with some of the greatest figures in the history of American aviation, including Buzz Aldrin, Bob Hoover, and Chuck Yeager. Imaginaut Entertainment established a blend of slick naturalism to showcase these historical figures and their intimate story.</span></p>";
	}
	
	if(desc == 'pageant'){
	text = "<h5><span>Pageant</span></h5><br />";
	text += "<p class=\"p1\"><span>This multi-format documentary produced by Cineaste chronicles the lives of competitors in the Miss Gay America competition – a beauty pageant for female impersonators running for the last 30 years. Imaginaut Entertainment contributed an intimate visual style to highlight this character-driven film.</span></p>";
	}
	
	return text;
	
}

function insertFlash(myFlash){
	flash = myFlash;
	desc = comment(flash);
	
	txt = "<div id=\"reel_info\">";
	txt += desc;
	txt += "</div>";
	
	txt += "<h3><span>Reels</span></h3>";
	txt += "<div id=\"flashPlayer\">";
	txt += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"360\" height=\"285\" align=\"middle\">";
	txt += "<param name=\"movie\" value=\"video/" + flash + ".swf\" />";
	txt += "<param name=\"quality\" value=\"high\" />";
	txt += "<param name=\"wmode\" value=\"transparent\" />";
	txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
	txt += "<embed src=\"video/" + flash + ".swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"285\"></embed>";
	txt += "</object>";
	txt += "<br />";
	
	txt += "<h4><span><a href=\"javascript:void(0);\" onclick=\"resetFlash();\">close</a></span></h4>";
	txt += "</div>";
	
	document.getElementById('reel').innerHTML=txt;
}

function insertFlashNorm(myFlash){
	flash = myFlash;
	desc = comment(flash);
	
	txt = "<div id=\"reel_info\">";
	txt += desc;
	txt += "</div>";
	
	txt += "<h3><span>Reels</span></h3>";
	txt += "<div id=\"flashPlayer\">";
	txt += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"420\" height=\"360\" align=\"middle\">";
	txt += "<param name=\"movie\" value=\"video/" + flash + ".swf\" />";
	txt += "<param name=\"quality\" value=\"high\" />";
	txt += "<param name=\"wmode\" value=\"transparent\" />";
	txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
	txt += "<embed src=\"video/" + flash + ".swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"420\" height=\"360\"></embed>";
	txt += "</object>";
	txt += "<br />";
	
	txt += "<h4><span><a href=\"javascript:void(0);\" onclick=\"resetFlash();\">close</a></span></h4>";
	txt += "</div>";
	
	document.getElementById('reel').innerHTML=txt;
}

function insertFlashWide(myFlash){
	flash = myFlash;
	desc = comment(flash);
	
	txt = "<div id=\"reel_info\">";
	txt += desc;
	txt += "</div>";
	
	txt += "<h3><span>Reels</span></h3>";
	txt += "<div id=\"flashPlayer\">";
	txt += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"420\" height=\"280\" align=\"middle\">";
	txt += "<param name=\"movie\" value=\"video/" + flash + ".swf\" />";
	txt += "<param name=\"quality\" value=\"high\" />";
	txt += "<param name=\"wmode\" value=\"transparent\" />";
	txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
	txt += "<embed src=\"video/" + flash + ".swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"420\" height=\"280\"></embed>";
	txt += "</object>";
	txt += "<br />";
	
	txt += "<h4><span><a href=\"javascript:void(0);\" onclick=\"resetFlash();\">close</a></span></h4>";
	txt += "</div>";
	
	document.getElementById('reel').innerHTML=txt;
}

function insertFlashWideNew(myFlash){
	flash = myFlash;
	desc = comment(flash);
	
	txt = "<div id=\"reel_info\">";
	txt += desc;
	txt += "</div>";
	
	txt += "<h3><span>Reels</span></h3>";
	txt += "<div id=\"flashPlayer\">";
	txt += "<embed src=\"video/New/" + flash + ".mov\" width=\"640\" height=\"376\" controller=\"true\" autoplay=\"true\" loop=\"false\" volume=\"80\"></embed>";
	txt += "<br />";
	
	txt += "<h4><span><a href=\"javascript:void(0);\" onclick=\"resetFlash();\">close</a></span></h4>";
	txt += "</div>";
	
	document.getElementById('reel').innerHTML=txt;
}

function chugger(myHeader, myDivID){
	header = myHeader;
	divID = myDivID;

	txt = "<h4><span><a href=\"javascript:void(0);\" onclick=\"insertFlash('" + divID + "');\">" + header + "</a></span></h4>";
	txt += "<object class=\"reel_small_flash\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"225\" height=\"150\">";
	txt += "<param name=\"movie\" value=\"video/" + divID + "_sm.swf\" />";
	txt += "<param name=\"quality\" value=\"high\" />";
	txt += "<embed src=\"video/" + divID + "_sm.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"225\" height=\"150\"></embed>";
	txt += "</object>";
	
	document.getElementById(divID).innerHTML=txt;
}

function chuggerNorm(myHeader, myDivID){
	header = myHeader;
	divID = myDivID;

	txt = "<h4><span><a href=\"javascript:void(0);\" onclick=\"insertFlashNorm('" + divID + "');\">" + header + "</a></span></h4>";
	txt += "<object class=\"reel_small_flash\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"225\" height=\"150\">";
	txt += "<param name=\"movie\" value=\"video/" + divID + "_sm.swf\" />";
	txt += "<param name=\"quality\" value=\"high\" />";
	txt += "<embed src=\"video/" + divID + "_sm.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"225\" height=\"150\"></embed>";
	txt += "</object>";
	
	document.getElementById(divID).innerHTML=txt;
}

function chuggerWide(myHeader, myDivID){
	header = myHeader;
	divID = myDivID;

	txt = "<h4><span><a href=\"javascript:void(0);\" onclick=\"insertFlashWide('" + divID + "');\">" + header + "</a></span></h4>";
	txt += "<object class=\"reel_small_flash\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"225\" height=\"150\">";
	txt += "<param name=\"movie\" value=\"video/" + divID + "_sm.swf\" />";
	txt += "<param name=\"quality\" value=\"high\" />";
	txt += "<embed src=\"video/" + divID + "_sm.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"225\" height=\"150\"></embed>";
	txt += "</object>";
	
	document.getElementById(divID).innerHTML=txt;
}

function chuggerWideNew(myHeader, myDivID){
	header = myHeader;
	divID = myDivID;

	txt = "<h4><span><a href=\"javascript:void(0);\" onclick=\"insertFlashWideNew('" + divID + "');\">" + header + "</a></span></h4>";
	txt += "<div id=\"newWide\"><embed src=\"video/New/" + divID + "_sm.mov\" width=\"225\" height=\"126\" controller=\"false\" autoplay=\"true\" loop=\"true\" volume=\"0\"></embed>";
	
	document.getElementById(divID).innerHTML=txt;
}
//end of chugger code

//crew input
function crewInput(thisTag){
	name = 	thisTag;
	
//camOp	

	if(name=='j_conant'){
		txt = "<div class=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/jamesconant.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/jamesconant.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>As a Director and Director of Photography, James Conant has written and directed five films, most recently, \"El Angel de la Muerte\" and \"Death Trek.\" With a great sense of humor but also knowing when to get serious, it's always a pleasure to have James on set.<br /><br /><b>Gay Republicans</b> &ndash; feature doc &ndash; AFI LA winner, 2004<br /><b>The Endless Feast</b> &ndash; doc series for PBS, Nancy Jacobs Miller Exec Producer, Film Garden Entertainment<br /><b>Platinum Weddings</b> &ndash; reality series for WE, Nancy Jacobs Miller Exec Producer, Film Garden Entertainment<br /><b>Transgeneration</b> &ndash; doc series for Sundance Channel, Fenton Bailey Exec Producer, World of Wonder</span></p>";
		
		document.getElementById('camOpBio').innerHTML=txt;
	}

	if(name=='b_donnell'){
		txt = "<div class=\"crew_flash\"><object width=\"360\" height=\"313\">";
		txt += "<param name=\"movie\" value=\"video/bryandonnell.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/bryandonnell.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"313\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>After Bryan’s background in fine art and creative writing, the visual storytelling of film was probably inevitable.  Indie docs and narratives he has shot have won numerous international awards, including a Palme d’Or at Cannes, and his camera work can be found all over television.<br /><br /><b>Bean Cake</b> – film narrative short – Palme d’Or, Cannes 2001<br /><b>Driving Force</b> – doc series for A&E, Dan Partland Exec Producer, Schmaguuli Productions<br /><b>Undesirables</b> – short doc – student Oscar, Best Doc Ft Lauderdale FF<br /><b>Wait Means Never</b> – narrative feature – Best Cinematography, Best Feature, Melbourne Underground Film Festival<br /><b>Nightmare on Elm Street 25th Anniversary DVD</b> – interviews<br /><b>No Excuses</b> – feature doc – Seventh Art Releasing</span></p>";
		
		document.getElementById('camOpBio').innerHTML=txt;
	}
	if(name=='km_graves'){
		txt = "<div class=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/kevinmgraves.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/kevinmgraves.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Kevin’s award winning work has been seen worldwide in festivals and on television.  Armed with extensive camera and lighting knowledge and a slightly dry sense of humor, Kevin is ready for any challenge.  Whether the project be narrative, documentary, television, commercial, or promo, he makes sure the visuals are top notch.  He is ready to get his hands dirty or to efficiently run his crew, ensuring the job gets done quickly but beautifully.<br /><br /><b>Aura, IL</b> – Feature HD Varicam – FirstSunrise Productions<br />Producer-Anita Roy Dobbs, Director – Yu Hasegawa-Johnson<br /><br /><b>Idle</b> – 35mm color short – IDLEWILE Productions<br />Producer – Anne Marie Fallon, Director – Megan Peterson<br /><br /><b>Herbie!</b> – Super 16mm Color short – Radar Dog Productions<br />Producer – Chris McKinley, Director – Drew Barnhardt<br />*WINNER – Best Short Film 2004 NYC Horror Film Festival<br /><a href=\"http://www.radardogproductions.com\" target=\"_new\">www.radardogprodutions.com</a><br /><br /><b>Children’s Hospital Orange County</b> – Documentary – Discovery Channel<br />Producer/Director – Paul Buller</span></p>";
		
		document.getElementById('camOpBio').innerHTML=txt;
	}
	if(name=='l_stacilauskas'){
		txt = "<div class=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/lisastacilauskas.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/lisastacilauskas.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Lisa Stacilauskas is a Camera Operator and DP.  She has shot 2nd Unit and B camera for over 20 Features and MOWs, including the Hallmark Channel series \"Mystery Woman\" starring Kellie Martin, and movies involving Ed Asner, Cybill,Shepard, John Ratzenberger and Doris Roberts. Lisa loves storytelling thorough images, whether it be film or video, narrative, documentary, or reality. She’s shot numerous shorts, documentaries, and reality shows including: \"Switched\" (ABC Family), \"Comedians of Comedy\" (Comedy Central), and the short film \"Trysting\" (Student Emmy/Cine Golden Eagle Award for Excellence).<br /><br /><b>Hallmark Channel</b> – \"Mystery Woman\" – starring Kellie Martin, Nina Sienaszko and Clarence Williams III, \"Out of the Woods\" – starring Ed Asner, \"Our House\" – starring Doris Roberts, \"Love’s Enduring Promise\" – directed by Michael Landon Jr.<br /><b>\"Switched\"</b> – ABC Family<br /><b>\"Comedians of Comedy\"</b> – Comedy Central<br /><b>\"Big Brother\"</b> – CBS<br /><b>\"Dreams of Busses\"</b> – Short<br /><b>\"Crazy Chicks\"</b> – Short<br /><b>\"Pompeii\"</b> – Documentary<br /><b>\"The Road to Stardom with Missy Elliott\"</b> – Reality</span></p>";

		document.getElementById('camOpBio').innerHTML=txt;
	}
	if(name=='c_westervelt'){
		txt = "<div class=\"crew_flash\"><object width=\"420\" height=\"236\">";
		txt += "<param name=\"movie\" value=\"video/clayWreel.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/clayWreel.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"420\" height=\"236\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>After receiving both the Bush and Kodak Awards for Excellence in Cinematography, Clay Westervelt graduated with a MFA from USC’s School of Cinema-Television, immediately filming pilots for every major network. He established the look of series such as Life of Luxury with Robin Leach (ABC) and Gene Simmons: Family Jewels (A&E)<br /><br /><a href=\"javascript:void(0);\" title=\"Click to view my other reel\" onclick=\"crewInput('c_westervelt2'),gainfocus('camOpBio'),losefocus('soundOpBio'),losefocus('staffBio');\">View my Green Screen Reel</a><br/><br/>&nbsp;</span></p>";

		document.getElementById('camOpBio').innerHTML=txt;
	}
	
	if(name=='c_westervelt2'){
		txt = "<div class=\"crew_flash\"><object width=\"420\" height=\"236\">";
		txt += "<param name=\"movie\" value=\"video/CW-GreenScreen.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/CW-GreenScreen.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"420\" height=\"236\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/c_westervelt.jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>After receiving both the Bush and Kodak Awards for Excellence in Cinematography, Clay Westervelt graduated with a MFA from USC’s School of Cinema-Television, immediately filming pilots for every major network. He established the look of series such as Life of Luxury with Robin Leach (ABC) and Gene Simmons: Family Jewels (A&E)<br /><br /><a href=\"javascript:void(0);\" title=\"Click to view my other reel\" onclick=\"crewInput('c_westervelt'),gainfocus('camOpBio'),losefocus('soundOpBio'),losefocus('staffBio');\">View my DP Reel</a><br/><br/>&nbsp;</span></p>";

		document.getElementById('camOpBio').innerHTML=txt;
	}
	
	if(name=='l_wiegand'){
		txt = "<div class=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/lisawiegand.swf\">";
		txt += "<param name=\"wmode\" value=\"transparent\" />";
		txt += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		txt += "<embed src=\"video/lisawiegand.swf\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" align=\"middle\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('camOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Lisa Wiegand is a Detroit native, LA based cinematographer who has photographed award-winning independent features and short films.  A graduate of UCLA and AFI film programs, Lisa’s recent work includes \"Little Athens\", which recently premiered at the Toronto Film Festival and was written up in American Cinematographer Magazine’s April 2005 issue. Lisa is currently in post-production on \"Chasing Ghosts\" – a documentary short across the US and Canada in HD 24p, featuring the top 1980’s arcade video game champions. Lisa has taught cinematography at AFI, UCLA, and Loyola Marymount University. She also volunteers her skills to the Sundance Institute’s Filmmaker’s Lab.<br /><br /><b>\"My Suicide\"</b> – feature film – Directed by David Lee Miller<br /><b>\"Chasing Ghosts\"</b> – documentary – Directed by Lincoln Ruchti<br /><b>\"Little Athens\"</b> – feature film – More details at www.littleathens.com<br /><b>\"Outta Time\"</b> – feature film – Featured in full length article in American Cinematographer December 2001.<br />Music Videos for bands:  <b>Metal Skool, MAE, End of Silence</b> and <b>Beyond Bob</b><br />Commercial/Corporate Clients:<b>Disney, SAG, Ford Motor Company, Warner Bros., Volvo, EA Games, Patron Spirits Co.,</b> and <b>McDonalds.</b></span></p>";

		document.getElementById('camOpBio').innerHTML=txt;
	}

//soundOP

	if(name=='d_ball'){
		txt = "<div class=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('soundOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Doug traded Iowa’s scenic landscape for the drizzle of Seattle long ago, and only recently relocated himself to Los Angeles where he’s been working very steadily ever since. Doug’s easy-going demeanor and affable personality make him the top choice for a variety of clients, including World of Wonder, Lifetime, McDonalds and FOX. Ask him about his boat.<br /><br /><b>Face the Family</b> – Produced by Gay Rosenthal Productions for Lifetime<br /><b>Million Dollar Listing</b> – Produced by World of Wonder for Bravo<br /><b>American Idol</b> (FOX)<br /><b>Pageant</b> – documentary</span></p>";

		document.getElementById('soundOpBio').innerHTML=txt;
	}
	
		if(name=='m_bidese'){
		txt = "<div class=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('soundOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Mike is an Emmy-winning Sound Engineer with a passionate love of sports, but his brash Chicago-born sense of humor won’t let you get away with worshipping any other than da Bears. Underneath all that is a very sweet guy with a commitment to getting the job done right. His technical expertise keeps him working in television and film, and his sense of humor keeps us coming back for more.<br/><br/><b>KCET-TV \"Tuskegee Airmen\" Life and Times</b> (Emmy Award Winner)<br /><b>VH1 Europe</b> – \"Carlos Santana Documentary\"<br /><b>Screen Actor Guild</b> – \"Sid Caesar\", \"Dom Deluise\", \"Cloris Leachman\" & \"Anthony Hopkins\"<br /><b>HBO Sports & NFL Films</b> documentary on \"Johnny Unitas\"<br /><b>FOOD TV NETWORK</b> – Surf & Turf – June 2006<br />Documentary Film on: <b>\"The Mother of Normandy\"</b> – The Story of Madame Simone Renaud.  Shot in Normandy, France 2005</span></p>";

		document.getElementById('soundOpBio').innerHTML=txt;
	}
	
		if(name=='j_crabb'){
		txt = "<div class=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('soundOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Joe is one of the most technically-adept individuals you’ll find on a film set, and one of the most skilled documentarians ever to carry a boom pole. And if he weren’t such a great audio man, Joe’s culinary skills would likely land him a job as head chef at a fine dining establishment.<br/><br/><b>Wake For Galileo</b> – Feature Film Director/Producer – Werner Herzog<br /><b>Inside Deep Throat</b> – Feature Documentary. Director/Producer – Fenton Baily/Randy Barbato<br /><b>Monster Garage/ BIG! / Speed Shop.</b> Original Productions for Discovery Channel<br /><b>Your Reality Checked</b> – Fine Living Network<br /><b>Dinner And A Movie</b> – TBS Broadcasting Network<br /><b>Queer Eye For The Straight Girl</b> – Scout Productions</span></p>";

		document.getElementById('soundOpBio').innerHTML=txt;
	}
		if(name=='j_machowski'){
		txt = "<div class=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('soundOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>While it’s not exactly “bi-coastal” when your second residence is Denver, CO, Jim has successfully kept himself working between LA and his mountaintop retreat for many years, and he’s built up an appropriately impressive resume in the process. Throw anything outdoors-y or philosophic at him and he’s a happy camper.<br/><br/><b>Face the Family</b> – Produced by Gay Rosenthal Productions for Lifetime<br /><b>Million Dollar Listing</b> – Produced by World of Wonder for Bravo<br /><b>It’s My Party</b> – Produced for World of Wonder for Bravo</span></p>";

		document.getElementById('soundOpBio').innerHTML=txt;
	}
		if(name=='g_stevenson'){
		txt = "<div class=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('soundOpBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Gary Stevenson was born and raised Bakersfield, California. After attending Bakersfield College, he moved to Los Angeles in 1985 to continue his education. As a talented musician, he acquired extensive knowledge of sound mixing, which led to ENG/EFP audio work.  Over the past twelve years, Gary has worked on a variety of projects including celebrity interviews, EPKs, reality and television shows. He has worked with E! Entertainment, Bravo, Warner Brothers, NBC, ABC and KCET. Gary has also worked on various award shows including the Oscars, Golden Globes and Emmys.<br/><br/><b>Showdogs Moms & Dads</b> – Produced by World of Wonder for Bravo<br /><b>Face the Family</b> – Produced by Gay Rosenthal Productions for Lifetime<br /><b>Nightmare on Elm Street</b> - DVD interviews<br /><b>It’s My Party</b> – Produced by World of Wonders for Bravo</span></p>";

		document.getElementById('soundOpBio').innerHTML=txt;
	}

/*
//editors

	if(name=='d_barnes'){
		txt = "<div id=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/danicabarnes.swf\">";
		txt += "<embed src=\"video/danicabarnes.swf\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('editorBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Danica Barnes is a graduate of the film studies program of Occidental College in Los Angeles, California. She is a skilled Final Cut Pro editor, who is also well-versed in DVD Studio Pro and Adobe After Effects. Danica brings a wry sense of humor to her pacing and a commitment to delivering the best possible product – and that’s why we love her.</span></p>";

		document.getElementById('editorBio').innerHTML=txt;
	}
	
	if(name=='d_collins'){
		txt = "<div id=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/davidcollins.swf\">";
		txt += "<embed src=\"video/davidcollins.swf\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('editorBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>David left a career as a successful restaurateur in Ohio to pursue an even more successful career in Hollywood post production.  David is skilled in both Avid and Final Cut Pro, and worked in almost every role from Preproduction to Post Production. With more technical experience than most, David knows the needs of a production at every step of the game and brings that knowledge to such clients as Disney, New Line, HGTV, A&E and the Learning Channel.<br/><br/>Promo’s and EPK’s:  <b>\"Prison Break\", \"The Family Guy\", \"That 70’s Show\"</b><br/>DVD Production: <b>\"The Lord of the Rings: The Fellowship of the Ring\" Special Edition, \"The Sixth Sense\" Collector’s Edition, \"Toy Story\" Collector’s Edition, \"The Fantasia Anthology\" Collector’s Edition, \"The Adventures of Robin Hood\" Special Edition, The Humphrey Bogart Collection.</b><br />Television Specials: <b>\"ABC’s 40th Anniversary\"</b> – ABC, <b>\"The Funny Women of Television\"</b> – CBS, <b>\"U.S. Comedy Arts Festival\"</b> – HBO</span></p>";

		document.getElementById('editorBio').innerHTML=txt;
	}
	
	if(name=='w_nomiyama'){
		txt = "<div id=\"crew_flash\"><object width=\"360\" height=\"284\">";
		txt += "<param name=\"movie\" value=\"video/wendynomiyama.swf\">";
		txt += "<embed src=\"video/wendynomiyama.swf\" width=\"360\" height=\"284\">";
		txt += "</embed></object></div>";
		txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('editorBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span>Wendy’s natural sense of visual pacing comes across whether in comedic or dramatic scenes, and her background in design gives her a substantial edge when developing graphics and visual-balanced imagery. She’s exceedingly fast on her tool of choice – Final Cut Pro. And after working in production and post coordination, she knows a thing or two about delivering on a deadline.<br /><br /><b>Screen Actors Guild Foundation \"BookPals Storyline Online\"</b><br /><b>\"Brave Irene\"</b> with Al Gore<br /><b>\"Somebody Loves You Mr. Hatch\"</b> with Hector Elizondo<br /><b>\"Polar Express\"</b> with Lou Diamond Phillips<br /><b>\"When Pigasso Met Mootisse\"</b> with Eric Close<br /><b>\"Romeow & Drooliet\"</b> with Haylie Duff<br /><b>Screen Actors Guild Foundation \"Conversations\":</b> Jeff Bridges, Joe Mantegna, Jonathan Winders, Laura Linney, Liam Neeson, Maria Bello, Mickey Rooney, Shirley MacLaine, Sid Caesar, William Shatner<br/><br/><b>\"Dinner Party\"</b> – Reality Pilot – Produced by Barbara Bossen</span></p>";

		document.getElementById('editorBio').innerHTML=txt;
	}
	
*/
	
//office staff

	if(name=='m_lodewyk'){
		txt = "<div class=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt += "<h5><span><a href=\"javascript:void(0);\" onclick=\"expand('staffBio');\">back</a></span></h5>";
		txt += "<p class=\"p1\"><span></span></p>";

		document.getElementById('staffBio').innerHTML=txt;
	}
	
}



//end of crew input

function p2Input(thisTag){
	name = 	thisTag;
	
//camOp	

	if(name=='p2FCP'){
		//txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt = "<h9>Ingest P2 into FCP</h9>";
		txt += "<p class=\"infoBlok\">1) Go to <b>File > Import > Panasonic P2 (FinalCut 5)</b><br />&nbsp;&nbsp;&nbsp;&nbsp;Go to <b>File > Log and Transfer (FinalCut 6)</b></p>";
		txt += "<p class=\"infoBlok\">2) Click <b>Add Folder</b> button in the upper left corner and browse to the folder that contains the P2 data</p>";
		txt += "<p class=\"infoBlok\">3) Highlight each folder(s) that contains a <b>CONTENTS</b> folder and <b>LASTCLIP.txt</b> file from the P2 Card and click <b>Open</b></p>";
		txt += "<p class=\"noteBlok\">*Note: If the <b>CONTENTS</b> folder and <b>LASTCLIP.txt</b> file are in a folder called <b>Card01</b>, highlight <b>Card01</b> and then click <b>Open</b></p>";
		
		txt += "<p class=\"infoBlok\">4) Clips will show up in a list. Select desired clips and click Add Selection to Queue or drag the media below</p>";
		txt += "<p class=\"infoBlok\">Once processed, all ingested clips will be in the Bin of your FCP project</p>";
		
		txt += "<p class=\"noteBlok\">*Notes:<br />When ingesting P2 data, FinalCut makes a copy and encodes clips into a format supported by FinalCut. These encoded copies are stored in the Capture Scratch folder. Technically, there will now be 2 copies of the clips after import (RAW P2 Data and the ingested P2 Quicktimes).<br /><br />It is still wise to save the original P2 clips and treat them as camera originals. Also, saving only the ingest P2 Quicktimes prevents you from using them other NLE systems.</p>";
		
		txt += "<p class=\"closeBlok\"><a href=\"javascript:void(0);\" onclick=\"expand('P2info');\">close</a></p>";
		document.getElementById('P2info').innerHTML=txt;
	}
	
	if(name=='p2AVID'){
		//txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt = "<h9>Ingest P2 into AVID</h9>";
		txt += "<p class=\"infoBlok\">1) Create new bin called \"P2 Media\". Highlight bin.</p>";
		txt += "<p class=\"infoBlok\">2) Then go to: <b>File > Import P2 > Clips to Bin</b></p>";
		txt += "<p class=\"noteBlok\">*Note: Navigate to the P2 drive, and select the folder that contains the <b>CONTENTS</b> folder. DO NOT navigate into the <b>CONTENTS</b> folder.<br /><br />The P2 clips should now populate inside the \"P2 Media\" bin</p>";
		txt += "<p class=\"infoBlok\">3) Select desired clips in the \"P2 Media\" bin. Then go to: <b>File > Import P2 > Media...</p>";
		txt += "<p class=\"noteBlok\">*Note: AVID will now copy all the files from your P2 drive to the destination you set in the Media Creation dialog box.</p>";
		
		txt += "<p class=\"closeBlok\"><a href=\"javascript:void(0);\" onclick=\"expand('P2info');\">close</a></p>";
		document.getElementById('P2info').innerHTML=txt;
	}
	
	if(name=='p2Cam'){
		//txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt = "<h9>Offload P2 via Camera to Computer</h9>";
		txt += "<p class=\"noteBlok\">*Note: Be sure to have the proper P2 drivers installed on the computer before attempting the following. Check out our <a href=\"resources.shtml#hpx_p2links\" target=\"_blank\">Links page</a> for common drivers.</p>";
		txt += "<p class=\"infoBlok\">1) Connect the Hard Drive to Computer</p>";
		txt += "<p class=\"noteBlok\">*Note: Firewire connections sustain faster speeds than USB 2.0. For a full explanation, check this <a href=\"http://www.usb-ware.com/firewire-vs-usb.htm\" target=\"_blank\">out</a></p>";
		txt += "<p class=\"infoBlok\">2) With its Power off, connect Camera to Computer</p>";
		txt += "<p class=\"noteBlok\">*Note: Only P2 Cards that need to be transferred should be in Camera</p>";
		txt += "<p class=\"infoBlok\">3) Turn on Camera and make sure it is set to the proper PC Mode for transfer. Go to menu: <b>OTHER FUNCTIONS > PCMODE</b> and set to <b>1394 DEVICE</b> if using Firewire or <b>USB DEVICE</b> if using USB</p>";
		txt += "<p class=\"infoBlok\">4) Switch Camera  from <b>CAM</b> mode to <b>MCR</b> mode by pressing the MODE button. Then click and hold MODE button to enter <b>PC</b> mode.</p>";
		txt += "<p class=\"noteBlok\">*Note: Viewfinder should read '1394 DEVICE CONNECT' or 'USB DEVICE CONNECT' and P2 Cards will mount on Computer (one for each card). Firewire can sometimes take a few minutes to recognize all P2 cards. If all cards are not present: Eject any P2 Cards that are present on Computer > Eject from the Camera all P2 Cards and then re-seat them back into Camera > Each P2 Slot on Camera should blink orange as they are being accessed > All P2 Cards should now be present</p>";
		txt += "<p class=\"infoBlok\">5) Open each P2 Card and copy EVERYTHING onto Hard Drive (<b>CONTENTS</b> folder and <b>LASTCLIP.txt</b> file)</p>";
		txt += "<p class=\"noteBlok\">*Note: If BOTH the <b>CONTENTS</b> folder and <b>LASTCLIP.txt</b> file are not copied over, all clips on that card will be unusable.<br /><br />If copying more than one P2 Card, copy each P2 Card into separate folders and label them appropriately to identify from which card the materials came</p>";
		txt += "<p class=\"infoBlok\">Repeat Step 5 for each P2 card</p>";
		txt += "<p class=\"noteBlok\">*Note:You may transfer multiple P2 Cards over simultaneously and even over multiple Hard Drives</p>";
		txt += "<p class=\"infoBlok\">6) After transfer is complete, eject all the P2 Cards from Computer. Turn off Camera and disconnect from Computer</p>";
		txt += "<p class=\"noteBlok\">*Note: Please be sure to have safely removed all P2 Cards from Computer before turning of Camera</p>";
		txt += "<p class=\"infoBlok\">7) Double check to see if all captured footage is fine. You can use Panasonic's free <b>P2 Contents Management Software</b> (P2CMS) to access and view the P2 files. <a href=\"https://eww.pavc.panasonic.co.jp/pro-av/support/desk/e/download.htm#p2cms\" target=\"_blank\">Click here</a> to download from their P2 Resources page</p>";
		txt += "<p class=\"infoBlok\">8) When all transferred footage is verified, proceed to format all P2 Cards in Camera</p>";
		
		txt += "<p class=\"closeBlok\"><a href=\"javascript:void(0);\" onclick=\"expand('P2info');\">close</a></p>";
		document.getElementById('P2info').innerHTML=txt;
	}
	
	if(name=='p2Card'){
		//txt += "<div id=\"crew_photo\"><img src=\"roster/" + name + ".jpg\" /></div>";
		txt = "<h9>Offload P2 via Card Reader to Computer</h9>";
		txt += "<p class=\"noteBlok\">*Note: Be sure to have the proper P2 drivers installed on the computer before attempting the following. Check out our <a href=\"resources.shtml#hpx_p2links\" target=\"_blank\">Links page</a> for common drivers.</p>";
		txt += "<p class=\"infoBlok\">1) Connect the Hard Drive to Computer</p>";
		txt += "<p class=\"noteBlok\">*Note: Firewire connections sustain faster speeds than USB 2.0. For a full explanation, check this <a href=\"http://www.usb-ware.com/firewire-vs-usb.htm\" target=\"_blank\">out</a></p>";
		txt += "<p class=\"infoBlok\">2) Connect Card Reader to Computer and insert P2 Card into Card Reader</p>";
		txt += "<p class=\"noteBlok\">*Note: If using a Duel Adapter and P2 Card does not mount on Computer, leave the Duel Adapter in Computer but pull out P2 Card and restart Computer</p>";
		txt += "<p class=\"infoBlok\">3) Once P2 card is mounted, open P2 Card and copy EVERYTHING (<b>CONTENTS</b> folder and <b>LASTCLIP.txt</b> file) onto Hard Drive</p>";
		txt += "<p class=\"noteBlok\">*Note: If BOTH the <b>CONTENTS</b> folder and <b>LASTCLIP.txt</b> file are not copied over, all clips on that card will be unusable.</p>";
		txt += "<p class=\"infoBlok\">4) If the transfer is complete and there are no more P2 Cards to offload, continue to Step 5. Else, eject all P2 Cards from Computer and repeat step 3.</p>";
		txt += "<p class=\"noteBlok\">*Note: If copying more than one P2 Card, copy each P2 Card into separate folders and label them appropriately to identify from which card the materials came. You may transfer the P2 Card over multiple Hard Drives simultaneously</p>";
		txt += "<p class=\"infoBlok\">5) Double check to see if all captured footage is fine. You can use Panasonic's free <b>P2 Contents Management Software</b> (P2CMS) to access and view the P2 files. <a href=\"https://eww.pavc.panasonic.co.jp/pro-av/support/desk/e/download.htm#p2cms\" target=\"_blank\">Click here</a> to download from their P2 Resources page.</p>";
		txt += "<p class=\"infoBlok\">6) When all transferred footage is verified, proceed to format all P2 Cards in Camera or use Panasonic's P2 Formatter to format with Computer</span>. <a href=\"https://eww.pavc.panasonic.co.jp/pro-av/support/desk/e/download.htm#p2simple\" target=\"_blank\">Click here</a> to download the free software.</p>";
		txt += "<p class=\"noteBlok\">*Note: *Note: Advantage to formatting P2 Cards via Computer is that you can name P2 Cards to your preference. Helps organize P2 cards when multiple cards are mounted to the Desktop. Formatting P2 Cards via Camera will rename the P2 Cards to \"NONAME\" by default</p>";
		
		txt += "<p class=\"closeBlok\"><a href=\"javascript:void(0);\" onclick=\"expand('P2info');\">close</a></p>";
		document.getElementById('P2info').innerHTML=txt;
	}
	
}


/*accordian script

var ContentHeight = 100;
var TimeToSlide = 250.0;

var openAccordion = '';

function runAccordion(index)
{
  var nID = "Accordion" + index + "Content";
  if(openAccordion == nID)
    nID = '';
   
  setTimeout("animate(" + new Date().getTime() + "," + TimeToSlide + ",'"
      + openAccordion + "','" + nID + "')", 33);
 
  openAccordion = nID;
}

function animate(lastTick, timeLeft, closingId, openingId)
{  
  var curTick = new Date().getTime();
  var elapsedTicks = curTick - lastTick;
 
  var opening = (openingId == '') ? null : document.getElementById(openingId);
  var closing = (closingId == '') ? null : document.getElementById(closingId);
 
  if(timeLeft <= elapsedTicks)
  {
    if(opening != null)
      opening.style.height = ContentHeight + 'px';
   
    if(closing != null)
    {
      closing.style.display = 'none';
      closing.style.height = '0px';
    }
    return;
  }
 
  timeLeft -= elapsedTicks;
  var newClosedHeight = Math.round((timeLeft/TimeToSlide) * ContentHeight);

  if(opening != null)
  {
    if(opening.style.display != 'block')
      opening.style.display = 'block';
    opening.style.height = (ContentHeight - newClosedHeight) + 'px';
  }
 
  if(closing != null)
    closing.style.height = newClosedHeight + 'px';

  setTimeout("animate(" + curTick + "," + timeLeft + ",'"
      + closingId + "','" + openingId + "')", 33);
}

//end of accordian
*/
