// JavaScript Document

/**
	Setup the main menu.
*/
function init_primary_menu() {
	
	$("ul.level-2").hide();
//	$("a.hasmore").click(function(){
  	$("a.hasmore").mouseover(function(){
		var childList = $(this).next();	
		
		// Determine if the list is open or not
		if(childList.is('ul.level-2')) {
			//if(childList.is(':visible')) { // collapse menu	
			childList.show();
			$(this).parent().mouseleave(function() {
				$("ul.level-2").hide();								 
			});

		}
  
	});
	

	
}




var uploadfile_index = 1;
$(document).ready(function() {
	$("#add_media_button").click(function () {
		var next_index = uploadfile_index+1;
		
		$("#row_f"+uploadfile_index).after("<div class=\"form-section\" id=\"row_f"+next_index+"\"><h3>Attach Media "+next_index+" </h3><p><input type=\"file\" class=\"large\" name=\"uploadfiles[]\" id=\"uploadfile_f"+next_index+"\" /></p></div>");
		uploadfile_index++;
	});
});

