var j = jQuery.noConflict();

j(document).ready(function() {
	j("div#page_content_wrapper").css("min-height", j("div#sidebar_wrapper").height()+50);
	
	j("a#screen").mouseenter(function() {
		j(this).next().next("span.screensTitle").animate({opacity: "1.0"}, "200");
	});
	j("a#screen").mouseleave(function() {
		j(this).next().next("span.screensTitle").animate({opacity: "0.0"}, "200");
	});
});
