jQuery(document).ready(function($) {
	
	
	if ( $('#pHeader > ul > li > span').length > 0 ) {
	
		$('#pHeader > ul').children("li").click(function() {	
			$('#pHeader').children("img").css("display","none");
			$('#pHeader > ul').children("li").attr("class","");
		});
		
		$("#pfirst").click(function() {
			$("#pHeader img:nth-child(1)").attr("style","none");
			$(this).attr("class", "active");
		});
		
		
		$("#psecond").click(function() {
			$("#pHeader img:nth-child(2)").attr("style","none");
			$(this).attr("class", "active");
		});
		
		$("#pthird").click(function() {
			$("#pHeader img:nth-child(3)").attr("style","none");
			$(this).attr("class", "active");
		});
	}
	
});
