	//yoni and matt's jquery stuff for FIREFEND / HORNICK (c) 2009-10
	//info@social-ink.net
	
	var $j = jQuery.noConflict(); //declare this cause of problems with WP
	
		$j(function(){

			var $blogsrc = $j('#blogurl').val() + '/images/';

			$j('.menubar').hover(function() { 
				$j(this).attr('src',($blogsrc+$j(this).attr('id')+'_hover.jpg'));
					}, function() {
				$j(this).attr('src',($blogsrc+$j(this).attr('id')+'.jpg'));
			});		

	});
