/* Copyright Bridgeline Software, Inc. An unpublished work created in 2009. All rights reserved. 
This software contains the confidential and trade secret information of Bridgeline Software, Inc. ("Bridgeline").  
Copying, distribution or disclosure without Bridgeline's express written permission is prohibited. */

// Edit Mode Miscellaneous Functions
$(function(){
    if(document.getElementById('jsInclude')){
       $(".flashContainer").addClass('flashEditMode');             
    }
    if(document.getElementById('homePage')){
      $('body').css('background','#fff url(/images/bodyBg.jpg) no-repeat top center');            
    }
    else
    {
      $('body').css('background','#fff url(/images/backgroundLevel2.jpg) no-repeat top center');            
    }
    
     if(document.getElementById('cahTemplate')){
      	$('body').css('background','#fff url(/images/bodyBG_cah.jpg) no-repeat top center');            
    }
    if(document.getElementById('futureContent')){
        $('body').css('background','#fff url(/images/futureContentBg.jpg) no-repeat center -47px');            
    }
    if(document.getElementById('futureHome')){
        $('body').css('background','#fff url(/images/futureHomeBg.jpg) no-repeat center -49px');                
    }
    if(document.getElementById('modalgrip')){
        $('body').css('background','transparent none repeat scroll 0 0');                
    }
    
     $(".pressItem h4").click
	    (function()
            {
		        $(this).next("div").slideToggle(300);
		        $(this).toggleClass("showDown");
                return false;
            }
         )
    
    $('.stripeMe tr:even').addClass('altRow'); 
    $(".answer").hide();
	    $("h5.question").click
	    (function()
            {
		        $(this).next("div").slideToggle(300);
		        $(this).toggleClass("showDown");
                return false;
            }
         )
});




