$(function() {
    $('#container-1 > ul').tabs();
});
function HideContent(d) {
	if(d.length < 1) { return; }
		document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	if(d.length < 1) { return; }
		document.getElementById(d).style.display = "block";
}
function click_see_more(id) {
//	$('more'+id).toggle();
    $("#more"+id).show();
//	$('seemore'+id).update("<a href=\"javascript:void(0);\" onclick=\"javascript:click_see_less("+id+");\">(hide)</a>");
    $('#seemore'+id).html("<a href=\"javascript:void(0);\" onclick=\"javascript:click_see_less("+id+");\">(hide)</a>");
}
function click_see_less(id) {
//	$('more'+id).toggle();
    $("#more"+id).hide();
//	$('seemore'+id).update("<a href=\"javascript:void(0);\" onclick=\"javascript:click_see_more("+id+");\">(see more)</a>");
    $('#seemore'+id).html("<a href=\"javascript:void(0);\" onclick=\"javascript:click_see_more("+id+");\">(see more)</a>");
}
function click_heading(id) {

	$('expandImgDiv1').update("+");
	$('expandImgDiv2').update("+");
	$('expandImgDiv3').update("+");
	$('expandImgDiv'+id).update("");

	HideContent("body1");
	HideContent("body2");
	HideContent("body3");
	ShowContent("body"+id);
}
function popupWindow(url) {
	window.open( url, "myWindow", "status = 1, height = 380, width = 740, resizable = 0" )
}

function toggle_contact_details() {

$('contact_details_button').setStyle({
    color: '#eeeeee',
    background: '#333333'
});
$('contact_form_button').setStyle({
    color: '#333333',
    background: '#cccc99'
});

	$('contact_details_text').show();
    $('contact_details_form').hide();
}
function toggle_contact_form() {

$('contact_form_button').setStyle({
    color: '#eeeeee',
    background: '#333333'
});
$('contact_details_button').setStyle({
    color: '#333333',
    background: '#cccc99'
});
	$('contact_details_text').hide();
    $('contact_details_form').show();
}