// JavaScript Document
$(document).ready(function(){
	
	var opts = {
		// horizontal Dock with images expanding downwards in the vertical axis...
		align: 'bottom',
  		// set the maximum minor axis (vertical) image dimension to 48px
  		size: 80,
  		// add labels..
  		labels: true,
  		// swap the GIF extension for PNG extension for the larger image...
  		source: function(i){ return this.src.replace(/gif$/,'png'); }
  	};
	
	$('#packetmenu').jqDock(opts);
	
	$("ul li a").mouseover(function(){
		$(this).animate({color: "#FFF"}, 600);
	});
	$("ul li a").mouseout(function(){
		$(this).animate({color: "#935151"}, 600);
	});
});
