var $j = jQuery.noConflict();
$j(function(){
	$j("#menulist_root")
		.superfish({
			animation : { height: 'show'}
		});
	$j('a#menulink_1-footernav').css('background', 'none');
	//$('a#menulink_2-footer').css('border-right', 'none');
	$j(window).bind('load', function(){
		sameHeight();
		setwidth();
		FullHeight();
	});
});

function setwidth(){
    var wTemp 	= $j(window).width();
    var content = $j('#container').width();
    if(wTemp <= 984) wTemp = 984;
	var space 	= (wTemp - content) / 2;
	$j('#leftcol, #rightcol').width(parseInt(space));
	$j('#mainwrapper').width(wTemp);
}
