$(window).load(function() {	$('.navmenu_nolink').click(function(){return false;});	$('#featured img').removeClass('hide');		$('div#cf_ci a').mouseenter(function(e){			$(this).children('img').animate({ height: '47', left: '3', top: '23', width: '47'}, 100);	}).mouseleave(function(e) {		 $(this).children('img').animate({ height: '43', left: '5', top: '25', width: '43'}, 100);	});		$('div#cf_cf a').mouseenter(function(e){			$(this).children('img').animate({ height: '52', left: '2', top: '19', width: '42'}, 100);	}).mouseleave(function(e) {		 $(this).children('img').animate({ height: '48', left: '5', top: '21', width: '38'}, 100);	});		$('div#cf_ct a').mouseenter(function(e){			$(this).children('img').animate({ height: '57', left: '-2', top: '19', width: '60'}, 100);	}).mouseleave(function(e) {		 $(this).children('img').animate({ height: '53', left: '0', top: '21', width: '56'}, 100);	});		$('div#cf_cm a').mouseenter(function(e){			$(this).children('img').animate({ height: '70', left: '7', top: '12', width: '54'}, 100);	}).mouseleave(function(e) {		 $(this).children('img').animate({ height: '66', left: '9', top: '14', width: '50'}, 100);	});	/*	$('#featured').orbit({		animation: 'fade',      	// fade, horizontal-slide, vertical-slide, horizontal-push		animationSpeed: 800,    	// how fast animtions are		timer: false, 			 	// true or false to have the timer		advanceSpeed: 4000, 	 		// if timer is enabled, time between transitions 		pauseOnHover: false, 			 // if you hover pauses the slider		startClockOnMouseOut: false, 	 // if clock should start on MouseOut		startClockOnMouseOutAfter: 1000, // how long after MouseOut should the timer start again		directionalNav: false, 		 // manual advancing directional navs		captions: false, 			 // do you want captions?		captionAnimation: 'fade', 	// fade, slideOpen, none		captionAnimationSpeed: 800, // if so how quickly should they animate in		bullets: false,			 // true or false to activate the bullet navigation		bulletThumbs: false,		 // thumbnails for the bullets		bulletThumbLocation: '',		 // location from this file where thumbs will be		afterSlideChange: function(){} 	 // empty function 	});	*/});
