﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
if (!window.IMB) window.IMB = {};

window.IMB = {
	DefaultSearchText: "Suchbegriff eingeben...",
	Initialize: function () {
		/* Setup Menu */
		$(".navlinkchannel").mouseover(function () {
			$(this).parent(".channel").children(".navlinks").addClass("channelHover");
		});

		$(".channel").mouseleave(function () {
			$(".navlinks", this).removeClass("channelHover");
		})

		/* Setup Searchbox */
		$("#q").focus(function () {
			var q = $(this);
			if (q.val() == IMB.DefaultSearchText) q.val("");
		}).blur(function () {
			var q = $(this);
			if (q.val() == "") q.val(IMB.DefaultSearchText);
		});
	}
}

$(document).ready(IMB.Initialize);


