/* -----------------------------------------------------------------------------
	NLOC - Contact
----------------------------------------------------------------------------- */

// change monthly archives
function change_monthly_archives( sel ) {
   if (sel.selectedIndex <= 0) return;
   var opt = sel.options[sel.selectedIndex];
   if (opt && opt.value)
	  location.href = opt.value;
}

// select search result page
function select_search_result( sel ){
	if(sel.options[sel.selectedIndex].value){
		location.href = sel.options[sel.selectedIndex].value;
	}
}


// analyze DOM event
jQuery(document).ready(function(){

	// SyntaxHighlighter
	dp.SyntaxHighlighter.ClipboardSwf = "/js/syntaxhighlighter/clipboard.swf";
	dp.SyntaxHighlighter.HighlightAll("code");

});
