
function init() {
  var input = document.getElementById("search_text");

  input.onfocus = function() {
    if (this.value != '') {
      this.value = '';
    } else {
      return false;
    }
  }
}

window.onload = init;


jQuery.noConflict();

jQuery(document).ready(function() {

	jQuery.each(jQuery('div.mmLevel2').parent().parent(), function(index, value){
		var container = value.id;
		var content = value.id.replace('Container','Content');
		
		jQuery('#'+container+',#'+content).css('height','1000px').css('top','-5px');
				
		//Uncomment this to test if the selector is working
		//jQuery('#'+container+',#'+content+' div.elem a').css('background-color','#ccc');
	});
	
	jQuery("#yymenu a").click(function(){
		jQuery("#yymenu > div").css("visibility", "hidden");
	}
	);
});


