// JavaScript Document

  $(document).ready(function(){
							 
    $(".subhead_text").hide();
	$(".subhead_text2").hide();
	
	$("#header h1").mouseover(function(){
      $("#head_im").show();
    }).mouseout(function(){
      $(".subhead_text2").hide();
    });
	
	$("#b").mouseover(function(){
      $("#head_b").show();
    }).mouseout(function(){
      $(".subhead_text").hide();
    });

	$("#dp").mouseover(function(){
      $("#head_dp").show();
    }).mouseout(function(){
      $(".subhead_text").hide();
    });
	
	$("#gd").mouseover(function(){
      $("#head_gd").show();
    }).mouseout(function(){
      $(".subhead_text").hide();
    });
	
	$("#v").mouseover(function(){
      $("#head_v").show();
    }).mouseout(function(){
      $(".subhead_text").hide();
    });
	
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	 //$("p").css("border","1px solid red");
	// $(".gallerytab:gt(0)").hide();
	 //$(".gallerytab").hide();
	 
	


  });
  