// JavaScript Document

	google.load("jquery", "1");
 
	google.setOnLoadCallback(function() {
// Place init code here instead of $(document).ready()

	$('div#topmenu div.menuitemcontainer').hover(function() {
		// on hovering over, find the element we want to fade *up*
		var fade = $('> div > div', this);
		fade.fadeIn(300);
	}, function () {
		// on hovering out, fade the element out
		var fade = $('> div > div', this);
		fade.fadeOut(300);
	});
});
