var $j = jQuery.noConflict();


function adjustMyFooterPlease(){
	var newHeight= Math.round($j(window).height() - $j('#container').height());
	 if (newHeight >70){
		$j('#footer').height(newHeight);
	}else{
		$j('#footer').height(70);
	}
}

function animateMySidebarPlease(){
	 $j("#sidebar li a").hover(function(){
    	$j(this).stop().animate({
    		paddingLeft: "10px"
    	}, 400);
    }, function() {
    	$j(this).stop().animate({
    		paddingLeft: 0
    	}, 400);
    });
}


$j.swapImage(".swapImage");
