// Copyright (c) 2011 All Right Reserved, OpenITC - http://www.openitc.co.uk/

$(document).ready(function() {

	// make radio buttons look pretty
	$(".styledRadio").buttonset();

	// make buttons look pretty
	$("input:submit").button();

	// hide all expandableInfoBox
	expandableInfoBox("expandableInfoBox");

});

$(document).ready(function() {

	
});

function expandableInfoBox(prefix) {
	
	obj = $("." + prefix + "Placeholder");

	$('#' + $("." + prefix + "Placeholder").attr('id') + ' .' + prefix + 'WindowPlaceholder').hide();

	$('#' + $("." + prefix + "Placeholder").attr('id') + ' .' + prefix + 'Titlebar').click(function()
	{
		console.log('f');
		$('#' + $("." + prefix + "Placeholder").attr('id') + ' .' + prefix + 'TitlebarIcon').toggleClass(prefix + 'TitlebarIconCollapsed');
		$('#' + $("." + prefix + "Placeholder").attr('id') + ' .' + prefix + 'TitlebarIcon').toggleClass(prefix + 'TitlebarIconExpanded');
		$('#' + $("." + prefix + "Placeholder").attr('id') + ' .' + prefix + 'WindowPlaceholder').slideToggle('slow');
	});
	
}
