/*
 * Richmond Sausages singleton object for storing variables and functions
 */
RS = function() {
	_self = {};
	
	// Private
	//var varName = value;
	//function functionName() {}
	
	// Public
	//self.varName = value;
	//self.functionName = function() { };
	_self.blah = function() {
		alert('here');
	};
	
	return _self;
}();

/*
 * Run on document.ready
 */
$(document).ready(function() {

	$('#nav-right a,#nav-bottom a').hover(
	function() {
		$(this).stop().find('span,img').css({display:'block'}).end().animate({height:111,width:111},{
			'duration': 300,
			'easing': 'easeOutBounce'
		});
	},
	function() {
		$(this).stop().animate({height:26,width:26},{
			'duration': 300,
			'easing': 'easeOutBounce',
			callback: $(this).find('span,img').css({display:'none'})
		});
	});
});




