/* onload setup */
$(document).ready(function(){
    $(".link").colorbox();
	
});

function setParentOrder(){
	var send = new Object();
	send.contentList = $('#contentList').sortable('serialize');
    $.ajax({
      url: 'index.cfm?event=content-parent-order&r'+Math.random(),
      data: send,
      dataType: 'json',
      type: 'get'
    });
}
function setChildOrder(parentid){
	var send = new Object();
	send.contentList = $('#child-' + parentid).sortable('serialize');
    $.ajax({
      url: 'index.cfm?event=content-child-order&r'+Math.random(),
      data: send,
      dataType: 'json',
      type: 'get'
    });
}

function applyThemes() {	
	$("#subMenu")
		.find("a")
			.addClass("ui-state-default ui-corner-all ui-priority-secondary")
			.hover(
				function(){ 
					$(this).addClass("ui-state-hover"); 
				},
				function(){ 
					$(this).removeClass("ui-state-hover"); 
				}
			)
			.end();
}
