$(document).ready(function(){ 

	set_up_popups();
	
	$(".inputcontenthide").focus(function() {
		if($(this).val() == $(this).attr("title")){
			$(this).val('').addClass("highlighted");
		}
  	});
	
	$(".inputcontenthide").blur(function() {
		if($(this).val() == ''){
			$(this).val($(this).attr("title")).removeClass("highlighted");
		}
  	});
  	
  	$(".contact-buttons ul li a").hover(function() {
  		$(".contact-buttons .contact-output p").show().html($(this).html());
  	});
  	
  	$(".contact-buttons ul li a").mouseout(function() {
  		$(".contact-buttons .contact-output p").hide();
  	});
	
});

function set_up_popups()
{
	var popup_profiles =
	{
		help_topic:
		{
			height:340,
			width:480,
			center:1,
			scrollbars:1
		}
	};
	$('.popup').popupwindow(popup_profiles);
}
