// JavaScript Document

$(document).ready(function(){	
						   
   if ($(this).hasClass("highlight")) {
               $(this).removeClass("highlight");
        }
        else {  //Has class cmall
               $(this).addClass("highlight");
        }
        return false; //uneeded since <div>'s have no default event
		
});
   