	//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')+'_over.jpg'));
				}, function() {
			$j(this).attr('src',($blogsrc+$j(this).attr('id')+'.jpg'));
		});		
		
		
			$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 
				 });			
				 
				$j('#fp_slideshow_container').cycle({ 
					fx:    'fade', 
					pause: 1,
					timeout: 7000,
					speed:  1000, 
					next:  '#fp_slideshow_container', 
				 });
	
});

