// navfunctions.js
// 0.1
// Tilt Studio
//
// Dependencies:
// jQuery 1.2.6 (jquery.com)


//Main Nav Hover

/*
$(document).ready(function(){

	$(".menu2 a").append("<em></em>");
	
	$(".menu2 a").hover(function() {
		$(this).find("em").animate({height: "show", opacity: "show", left: "20px"}, 200);
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, 
	
	function() {
		$(this).find("em").animate({opacity: "hide", height: "hide", left: "-20px"}, 50);
	});
});
*/

//Menu Hover Script

  $(document).ready(function() {
    $("#secondary > li > a").hover(function() {
      $(this).animate({
        paddingLeft:"5px"
        }, 200);
    }, function() {
      $(this).animate({
        paddingLeft:"0"
        }, 200);
    });
  });
  
  
//Sliding Div Nav
  
    $(document).ready(function() {
$('[class^=table]').hide();
$('[class^=sizes]').click(function() {
var $this = $(this);
var x = $this.attr("className");
$('.table-' + x).slideToggle('normal');
return false;
});
});

