var $j = jQuery.noConflict();

$j(function(){
		$j("#home").hover(function(event){
				$j(this).effect("bounce",
				{
					distance: 5,
					times: 1,
					duration: 200				
				},350);
			},null);
	});

	$j(function(){
		$j("#forum").hover(function(event){
				$j(this).effect("bounce",
				{
					distance: 5,
					times: 1,
					duration: 200				
				},350);
			},null);
	});

	$j(function(){
		$j("#news").hover(function(event){
				$j(this).effect("bounce",
				{
					distance: 5,
					times: 1,
					duration: 200				
				},350);
			},null);
	});

$j(function(){
		$j("#goodies").hover(function(event){
				$j(this).effect("bounce",
				{
					distance: 5,
					times: 1,
					duration: 200				
				},350);
			},null);
	});

$j(function(){
		$j("#about").hover(function(event){
				$j(this).effect("bounce",
				{
					distance: 5,
					times: 1,
					duration: 200				
				},350);
			},null);
	});

$j(function(){
		$j("#community").hover(function(event){
				$j(this).effect("bounce",
				{
					distance: 5,
					times: 1,
					duration: 200				
				},350);
			},null);
	});
