jQuery.noConflict();

jQuery(document).ready(function() {
	jQuery('#tabContainer').tabs();
	jQuery('.date').datepicker();
	hideSiteUpdate();
	hideParmUpdate();
	hide8HrUpdate();
	hideAqiUpdate();
});

function hideSiteUpdate()
{
    jQuery('#imgSiteUpdate').hide();
}

function hideParmUpdate()
{
    jQuery('#imgParmUpdate').hide();
}

function showSiteUpdate()
{
    jQuery('#imgSiteUpdate').show();
}

function showParmUpdate()
{
    jQuery('#imgParmUpdate').show();
}

function hide8HrUpdate()
{
    jQuery('#img8HrUpdate').hide();
}

function show8HrUpdate()
{
    jQuery('#img8HrUpdate').show();
}

function hideAqiUpdate()
{
    jQuery('#imgAqiUpdate').hide();
}

function showAqiUpdate()
{
    jQuery('#imgAqiUpdate').show();
}