jQuery.noConflict();
jQuery(document).ready(function()
{
	jQuery('#navigation ul li.parent').mouseenter(function()
	{
		jQuery('> ul',this).show();
	}).mouseleave(function()
	{
		jQuery('> ul',this).hide();
	});
	jQuery('#flash_left .moduletable').click(function()
	{
		location.href = jQuery('a',this).attr('href');
	});
});
