
$(function() {

//$("#search_keyword").keyup(function() { KeywordSearch() });

	if($("#speaker_rotation").length > 0)
	{	
		showRandomSpeaker();
		setInterval("showRandomSpeaker()", 9500);
	}

});

function startKeywordSearch()
{
	var field = $("#search_keyword");
	field.addClass("focus");
	if(field.val() == 'Sök')
		field.val("");
}

function endKeywordSearch()
{
	var field = $("#search_keyword");
	field.removeClass("focus");
	if(field.val() == '')
		field.val("Sök");
}

function KeywordSearch(page)
{
	$("#the_subcontent").html("");
	var field = $("#search_keyword");
	//alert(field);
	var search_for = field.val();
	$.post("/?page="+ page +"&pop=1", { keyword : escape(search_for) }, function(data) {
	//alert(data);
	$("#the_subcontent").html(data);
	//alert($('#the_subcontent').html());
																			
																			});
}

function readmore(id) {
  var option = 'width=550,height=550,status=0,menubar=0,titlebar=0,scrollbars=1';
  window.open("talare_more.inc.php?speakerid="+ id,"",option);
}

function showRandomSpeaker()
{
	$("#speaker_rotation").fadeOut("medium", function () { 
		
		$.get("speaker_rotation.php", function(data){
											   $("#speaker_rotation").html(data);
												$("#speaker_rotation").fadeIn("slow"); 
											   });

	});
}




