/**
 * 
 */
 $('#chck').change(function() {
 alert('Handler for .change() called.');
 });

/**
 * Entfernt ein Element aus einer optionpane mit der id "sel_list"
 */
$('#remove').click(function(event) {
	event.preventDefault();
	
	var $select = $('#sel_list');
	$('option:selected', $select).remove();
});




/**
 * Fuegt ein Element aus der optionpane mit der id "sel_app" in die optionpane
 * mit der id "sel_list"
 */
$('#add').click(function(event) {
	event.preventDefault();

	var $select = ('#sel_app');
	var optionName = $('option:selected', $select).text();
	var optionValue = $('option:selected', $select).val();

	$('<option>').attr('value', optionValue).text(optionName).appendTo('#sel_list');
});

$(document).ready(function() {
    $('.popups a').jwindow({
        draggable: true
    });

});



