$(document).ready(function(){
		$(".menu a").append("<em></em>");
			
		$(".menu a").hover(function() {
			$(this).find("em").animate({opacity: "show", top: "35"}, "slow");
			var hoverText = $(this).attr("title");
			$(this).find("em").text(hoverText);
			$(this).find("img.hovered").animate({opacity: "show"}, "slow");
		}, function() {
			$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
			$(this).find("img.hovered").animate({opacity: "hide"}, "fast");
		});
		$(".headline").wrap("<div class=headlinebox></div>");
		$(".headline").append("<span></span>");


		$("#sidebar ul li ul li").hover(function(){
			$(this).animate({ marginLeft: "0.1in", marginRight: "0in"}, "fast" );
			var cssObj = {
				color: "#000000"
			}
			$(this).css(cssObj);
		}, function() {
			$(this).animate({ marginLeft: "0in", marginRight: "0.1in"}, "slow" );
			var cssObj = {
				color: "#2b3928"
			}
			$(this).css(cssObj);
		});
		var tooltipObj = {
			track: true,
			delay: 0,
			showURL: false,
			showBody: " - ",
			fade: 250
		}
		var tooltipObj2 = {
			track: true,
			delay: 250,
			showURL: true,
			showBody: " - ",
			fade: 250
		}
		$('div#footer_inside  ul li#categories-207003921 ul a, div.info small a, .tooltipyess').tooltip(tooltipObj);
		$('div#footer_inside  ul li#linkcat-2 ul a, div#footer_inside  ul li#linkcat-48 ul a, div#footer_inside  ul li#linkcat-177 ul a').tooltip(tooltipObj2);

		$("div.gallerydetail,div.gallerydetail2").css({opacity:0});
		$("li.galleryimage").hover(function() {
			$(this).find("div.gallerydetail, div.gallerydetail2").fadeTo("slow", 0.90);
			$(this).find("div.galleryicon").animate({opacity: "show", top: "-20"}, "slow");
		}, function() {
			$(this).find("div.gallerydetail, div.gallerydetail2").fadeTo("slow", 0);
			$(this).find("div.galleryicon").animate({opacity: "hide", top: "20"}, "fast");
		});
	});


	function ndakada() {
		alert('im sorry, but this feature is currently unavalable ... please come back later.  :)')
	}
	function undev() {
		alert('im sorry, but this project is currently Under Development ... please come back later.  :)')
	}