$(document).ready(function() {
													 
	$('.jt').bgiframe();
													 
  $('a.jt').cluetip({
		arrows: true, 
		cluetipClass: 'jtip',
		cluezIndex: 99,
		dropShadow: false, 
		hoverIntent: false});
	
  $('div.contactDetails:eq(0) > div').hide();
  $('div.contactDetails:eq(0) > h4').click(function() {
		$(this).next().slideToggle('fast');
		if ($(this).text().search('View') != -1)
			$(this).find('span').replaceWith('<span><img src="local/images/arrowDown.jpg" /> Hide</span>');
		else
			$(this).find('span').replaceWith('<span><img src="local/images/arrowRight.jpg" /> View</span>');
  });	
	
});
