$(document).ready(function(){
    
	//main navigation
    $("#mainNav > li > a").bind("mouseover", function () {
        $(this).find("span").fadeIn(350);
    });
	
	$("#mainNav > li > a > span").bind("mouseout", function () {
        $(this).fadeOut(650);
	});
	
	//footer icons
    $("#icons > li > a").bind("mouseover", function () {
        $(this).find("span").fadeIn(350);
    });
	
	$("#icons > li > a > span").bind("mouseout", function () {
        $(this).fadeOut(650);
	});
	
	//gallery navigation
    $("#galleryNav > li > a").bind("mouseover", function () {
        $(this).find("span").fadeIn(350);
    });
	
	$("#galleryNav > li > a > span").bind("mouseout", function () {
        $(this).fadeOut(650);
	});
	
	//gallery pagination
    $("#galleryPagination > li > a").bind("mouseover", function () {
        $(this).find("span").fadeIn(350);
    });
	
	$("#galleryPagination > li > a > span").bind("mouseout", function () {
        $(this).fadeOut(650);
	});

});