$(function() {	
    // initialize scrollable 
    $("div.scrollable").scrollable({
		'speed': 1200,
		'size': 3
	}); 


	$("a[href^='http']").livequery(function() {$(this).attr('target','_blank');});
	$("a.external").livequery(function() {$(this).attr('target','_blank');});
	
	$(".wymeditor").wymeditor({
		toolsItems: [
			{'name': 'Bold', 'title': 'Strong', 'css': 'wym_tools_strong'}, 
	        {'name': 'Italic', 'title': 'Emphasis', 'css': 'wym_tools_emphasis'},  
	        {'name': 'CreateLink', 'title': 'Link', 'css': 'wym_tools_link'},
	        {'name': 'Unlink', 'title': 'Unlink', 'css': 'wym_tools_unlink'},
	        {'name': 'ToggleHtml', 'title': 'HTML', 'css': 'wym_tools_html'},
	        {'name': 'Paste', 'title': 'Paste_From_Word',
	            'css': 'wym_tools_paste'},
	        {'name': 'Undo', 'title': 'Undo', 'css': 'wym_tools_undo'},
	        {'name': 'Redo', 'title': 'Redo', 'css': 'wym_tools_redo'}
	    ],
	
		containersItems: [],
		logoHtml: ''
	    }
	);
	$("a.blockUI").livequery('click', function() {
		$.blockUI('Processing...');
	});
	$("a.thick").livequery('click', function() {
		tb_show('', $(this).attr('href'));
		return false;
	});
});
