jQuery.noConflict();
jQuery(document).ready(function($) {

	jQuery('#newest_tutorials li').hover(
		function() { jQuery('.hover', this).css('display', 'block');jQuery('.el', this).css('display', 'none');},
		function() { jQuery('.hover', this).css('display', 'none');jQuery('.el', this).css('display', 'block');}
		);
		
	jQuery('#hello_world li').hover(
		function() { jQuery('.hover', this).css('display', 'block');jQuery('.el', this).css('display', 'none');},
		function() { jQuery('.hover', this).css('display', 'none');jQuery('.el', this).css('display', 'block');}
		);
		
	jQuery('#most_popular li').hover(
		function() { jQuery('.hover', this).css('display', 'block');jQuery('.el', this).css('display', 'none');},
		function() { jQuery('.hover', this).css('display', 'none');jQuery('.el', this).css('display', 'block');}
		)

});