	jQuery(function($){
		$(".selectable").selectable({
			set: "fadeIn",
			inDuration: "fast",
			opacity: .9
		});
		
		$(".simpleBox").selectable({
			style: "simpleBox",
			set: "slideDown",
			out: "fadeOut",
			inDuration: 150,
			outDuration: 150,
			height: 150,
			opacity: .9
		});
		
		$("#callback").selectable({
			style: "simpleBox",
			height: 150,
			opacity: .9
		},function(){
			if($("#callback").val().length>0) window.location = $("#callback").val();
		});
		
	});
