/**************************************************************************************************/
/***
/***	TERNSTYLE'S WORDPRESS THEME JAVASCRIPT DOCUMENT - (Nanoprobe)
/***	-----------------------------------------------------------------------
/***	Written by Matthew Praetzel. Copyright (c) 2009 Matthew Praetzel.
/***	-----------------------------------------------------------------------
/***	All Rights Reserved. Any use of these functions & scripts without written consent is prohibited.
/***
/**************************************************************************************************/

/*-----------------------
	Initialize
-----------------------*/
var wp_url = '/';
var mw_url = '/probepedia/index.php';
$ = $ ? $ : jQuery;
//
$(document).ready(function () {
	if(document.getElementById('a')) {
		$('#a ul').cycle({
			fx:'custom',
			speed: 'slow',
			timeout:7000,
			cleartype:1,
			cleartypeNoBg:true,
			next:'#next',
			prev:'#prev',
			cssBefore: { 
				display:'block',
				top:-195,
				opacity:0
			},
			animIn:  { 
				top: 0,
				opacity:1
			},
			animOut: {  
				top:195,
				opacity:0
			}
		});
	}
});
function menu() {
	//navigation
	$("#n ul ul, #forum-menu ul ul").css({display:"none"});
	$("#n ul li").hoverIntent(function() {
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(100);
	},function() {
		$(this).find('ul:first').css({visibility: "hidden"});
	});
	$('#forum-menu ul *').unbind();
	$('#forum-menu ul li').hoverIntent(function() {
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(100);
	},function() {
		$(this).find('ul:first').hide(100);
	});
	//sidebar
	/*
	$('#t .widget li').mouseover(function() {
		$(this).siblings().find('ul').slideUp('slow');
		$(this).find('ul').slideDown(500);
	});
	*/
	//search
	$('input.search').bind('focus',function() {
		$('input.search').toggleClass('focus');
		if($('input.search').val() == 'search...') {
			$('input.search').val('');
		}
	});
	$('input.search').bind('blur',function() {
		$('input.search').toggleClass('focus');
		if($('input.search').val() === '') {
			$('input.search').val('search...');
		}
	});
}
$(document).ready(function() { menu(); });
function initSearch(o,t) {
	var q = document.getElementById('search').elements['s'].value;
	var t = t ? t : document.getElementById('ws').value;
	//categories
	var r = new RegExp('^[0-9]+$');
	if(r.test(t) && t != 0) {
		location.href =  wp_url+'?s='+q+'&scat='+t;
	}
	//wiki
	else if(t == 'wiki') {
		location.href = mw_url+'/Special:Search?ns0=1&ns1=1&ns2=1&ns3=1&search='+q;
	}
	//members
	else if(t == 'authors') {
		location.href = wp_url+'?page_id=30&query='+q;
	}
	//entire site
	else {
		location.href =  wp_url+'?s='+q;
	}
}
