$(document).ready(function() {
	$('#form-style').selectbox(
	{
		inputType: 'span',
		inputClass: 'form-style-jquery', //css class for the input which will replace the select tag, display the background image  
		containerClass: 'form-style-jquery-drop', // The list container class (a div element)  
		hoverClass: 'current', // css class for the current element  
		currentClass: 'selected', // css class for the selected element  
		debug: false // debug mode on/off  
	}  
	); 
	$("#form-help").click(function()
	{
		$("#form-help-slider").slideToggle();
	});
	$("#design-accordion").accordion(
	{
		autoHeight: false
	});
}); 
