/********************************************
*
*  JS | Global
*  Copyright: emion interaktive medien GmbH
*  mschmidt@20080311 1911
*
*********************************************/


$(document).ready(function(){
	$("#searchterm").focus( function() 
		{
		if(this.value == "Suchen")
			{
			this.value = "";
			}
		else if(this.value == "")
			{
			this.value = "Suchen";
			}
		});
	$("#searchterm").blur( function()
		{
		if(this.value == "")
			{
			this.value = "Suchen";
			}
		});
		
	$("#subnavig").css("marginLeft","-500px").hide();
	$("#subnavig").animate({ marginLeft:0, opacity: 'show'}, "slow");
	
	$("#newsGalerie img").mouseover(function()
		{
		$(this).css("border","1px solid #fff");
		});
	$("#newsGalerie img").mouseout(function()
		{
		$(this).css("border","1px solid #a68137");
		});
		
	$("#newsGalerie a").lightBox();
	
});