// JavaScript Document
if(window.jnc)
{
}else
{
	var jnc = jQuery.noConflict();
}
function showObject(element)
{
	jnc(element).show('fast');
}
function hideObject(element)
{
	jnc(element).hide('fast');
}
jnc(document).ready(function()
{
	jnc('input.pretty:radio, input.pretty:checkbox, select.pretty, input.pretty:file').uniform();
});

