//<!-- Hide script from old browser
IE4plus = (document.all) ? true : false;
NS4 = (document.layers) ? true : false;
function clickIE()
{
    return false;
}
function clickNS(e)
{
	if (e.which==2 || e.which==3) 
     {
       return false;
     }
}
if (!IE4plus) 
{
   document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
   document.onmousedown=clickNS;
   document.onmouseup= clickNS;
   document.oncontextmenu=clickIE; // For NS 6+
} 
else 
{
   document.onmouseup= clickIE;
   document.oncontextmenu=clickIE;
}

$(document).ready(function(){
     $(".p1").hide();
	 $(".p2").hide();
	 $(".p3").hide();
	 $(".p4").hide();
	$('.home').click(function(){
	$(".first").show();
	$(".p2").hide();
    $(".p1").hide();
	$(".p3").hide();
    $(".p4").hide();
   });
     $('.link1').click(function(){
	$(".first").hide();
	$(".p2").hide();
    $(".p1").show();
	$(".p3").hide();
    $(".p4").hide();
   });
    $('.link2').click(function(){
	$(".first").hide();
	$(".p1").hide();
    $(".p2").show();
	$(".p3").hide();
    $(".p4").hide();
   });
    $('.link3').click(function(){
	$(".first").hide();
	$(".p1").hide();
    $(".p2").hide();
	$(".p3").show();
    $(".p4").hide();
   });
    $('.link4').click(function(){
	$(".first").hide();
	$(".p1").hide();
    $(".p2").hide();
	$(".p4").show();
    $(".p3").hide();
   });
});

//End hiding script from old browser-->
