	//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'));
			});		
			
			$j(".designing_promo a img, .featured_at a img").hover(
			function() {
			$j(this).stop().animate({"opacity": "0.8"}, "fast");
			},
			function() {
			$j(this).stop().animate({"opacity": "1"}, "fast");
			});
			
		$j('#fp_slideshow').cycle({ 
			    fx:    'fade', 
			timeout: 3000,
				pause: 1,
			    speed:  500 
			 });
			
			$j('#fp_news_slideshow').cycle({ 
				    fx:    'fade', 
					pause: 1,
					timeout: 7000,
				    speed:  1000 
				 });

	});

