jQuery(document).ready(function() {jQuery('#production').click(function(){if(jQuery('#production').attr('class') != "clicked"){jQuery('#sub_navpro').show('slow');jQuery('#sub_navart').hide('slow');jQuery('#production').addClass('clicked');jQuery('#art').removeClass('clicked');}else{jQuery('#sub_navpro').hide('slow');jQuery('#production').removeClass('clicked');}});jQuery('#art').click(function () {if(jQuery('#art').attr('class') != "clicked"){jQuery('#sub_navpro').hide('slow');jQuery('#sub_navart').show('slow');jQuery('#art').addClass('clicked');jQuery('#production').removeClass('clicked');}else{jQuery('#sub_navart').hide('slow');jQuery('#art').removeClass('clicked');}});});
