// jQuery.noConflict();

// Put all your code in your document ready area
jQuery(document).ready(function($){

	jQuery(document).ready(function() {
		jQuery('div.unveilingUno').hide();
		jQuery("a.unveilingDosClick").css({ color: "#000", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_black.gif)" });

		jQuery('a.unveilingDosClick').click(function() {
			jQuery('div.unveilingUno').hide();
			jQuery('div.unveilingDos').fadeIn(2000);
			jQuery("a.unveilingDosClick").css({ color: "#000", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_black.gif)" });
			$("a.unveilingClick").css({ color: "#666", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_orange.gif)" });
		return false;
		});
		jQuery('a.unveilingClick').click(function() {
			jQuery('div.unveilingDos').hide();
			jQuery('div.unveilingUno').fadeIn(2000);
			jQuery("a.unveilingDosClick").css({ color: "#666", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_orange.gif)" });
			$("a.unveilingClick").css({ color: "#000", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_black.gif)" });
		return false;
		});
		jQuery('a.unveilingTres').click(function() {
			jQuery('div.unveilingDos').hide();
			jQuery('div.unveilingUno').fadeIn(2000);
			jQuery("a.unveilingClick").css({ color: "#000", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_black.gif)" });
			jQuery("a.unveilingDosClick").css({ color: "#666", "background-image": "url(/themes/basetheme/Orlandopac_org/icon_arrow_orange.gif)" });
		return false;
		});

	});

});


