$(document).ready(function() {

	$("select#search-type").change(function() {
		$("form#search-form").attr("action",$(this).val());
	});

	$("input#go-button").click(function() {
		if ($("input#q").val().length == 0)
		{
			alert("You must enter your search terms first");
			$("input#q").focus();
			return false;
		}
	});

	$("div#connect a:not(:eq(0))").click(function() {
		window.open($(this).attr("href"),"_new");
		return false;
	});

	//$("div#media a").click(function() {
	//	window.open($(this).attr("href"),"_new");
	//	return false;
	//});

});