// JavaScript Document

   $(function() {
                // set opacity to nill on page load
                $("ul#orderonline span").css("opacity","0");
                // on mouse over
                $("ul#orderonline span").hover(function () {
                        // animate opacity to full
                        $(this).stop().animate({
                                opacity: 1
                        }, "slow");
                },
                // on mouse out
                function () {
                        // animate opacity to nill
                        $(this).stop().animate({
                                opacity: 0
                        }, "slow");
                });
        });
        $(function() {
                // set opacity to nill on page load
                $("ul#contactus span").css("opacity","0");
                // on mouse over
                $("ul#contactus span").hover(function () {
                        // animate opacity to full
                        $(this).stop().animate({
                                opacity: 1
                        }, "slow");
                },
                // on mouse out
                function () {
                        // animate opacity to nill
                        $(this).stop().animate({
                                opacity: 0
                        }, "slow");
                });
        });
      function dailyBackground(node,images)
      {
       node.style.backgroundImage = "url(\""+images[Math.floor(Math.random()*images.length)]+"\")"; 
      }
        $(function() {
                // set opacity to nill on page load
                $("ul#navbar span").css("opacity","0");
                // on mouse over
                $("ul#navbar span").hover(function () {
                        // animate opacity to full
                        $(this).stop().animate({
                                opacity: 1
                        }, "slow");
                },
                // on mouse out
                function () {
                        // animate opacity to nill
                        $(this).stop().animate({
                                opacity: 0
                        }, "slow");
                });
        });
		
jQuery(document).ready(function($){
  // set up the options to be used for jqDock...
  var dockOptions =
    { align: 'top' // horizontal menu, with expansion DOWN from a fixed TOP edge
    , labels: 'bc'
	, size: 150  // add labels (defaults to 'br')
    };
  // ...and apply...
  $('#menu').jqDock(dockOptions);
});


