jQuery(document).ready(function() {
  // Handler for .ready() called.
  	jQuery('.expanded .menu').parent().addClass('greenrthighlight');
	jQuery('#edit-search-block-form--2').val('Search');
	
	jQuery('#edit-search-block-form--2').click(function() {
	  jQuery('#edit-search-block-form--2').val('');
	});
	
	jQuery('#block-facebook-pull-facebook-pull-default h2').html('Facebook');
	
	
	
	jQuery(".contents").hide();
	//toggle the componenet with class msg_body
	jQuery(".titles").click(function(){
	    jQuery(this).next(".contents").slideToggle(500);
	});
});

;

