                                                
// Measured Marketing JavaScript Document - 2009
/* NOTES:
                    JULY 29 09 -- Creative Circle animation is commented from a bug of quickly rolling over and out causes a flashing effect. Now it is currently set up with no animation found underneath the commented text.
*/

$(document).ready(function() {


$("#leftNav").accordion({ 
	autoHeight: false,
	active: false,                                
	header: "h3",
        alwaysOpen: false
});


//Creative Circle
/*	-- Removed --

   $('.creativeCircle p').hide(); 
   $('.creativeCircle a').hover(function() {
   $(this).next('em').animate( {
		opacity : 'show'}, '10'); 
			}, function() {
   $(this).next('em').animate( {
		opacity : 'hide'}, '10'); 
});  
    -- End of Commented Section --
	*/

// Removed animation. Basic show hide function

   $('.creativeCircle p').hide(); 
   $('.creativeCircle a').hover(function() {
   $(this).next('em').show(); 
			}, function() {
   $(this).next('em').hide(); 
}); 

	
	
	
}); 

    

    

    

    

    

    