function testimonial_skybox(limit,ide) {
	var market_slug = $('#market_slug').val();
	if (!ide) title = 'Birthday Party Planner Testimonial';
	else title = '';
	model = 'website_bd_testimonial';
	querystring = '';
	div_id = 'website_bd_testimonial';
	refresh_div_uri = '/'+market_slug+'/birthday-party/website_bd_testimonial?limit=' + limit;
	$('#website_bd_testimonial').skybox_form(model,ide,{
															ide:ide,
															width:445,
															uri:refresh_div_uri,
															title:'Birthday Party Planner Testimonial'
														});
}


function show_table_service_div() {
	if ($('#table_service').attr("checked")) {
        $('#table_service_guests').css('display','block');
    }
	else
    	$('#table_service_guests').css('display','none');
}

function show_open_bar_div() {
	if ($('#open_bar').attr("checked")) {
        $('#open_bar_hours').css('display','block');
    }
	else
        $('#open_bar_hours').css('display','none');
};
							
function list_music_choices() {
	var choices = "";
	if ($('#top40').attr("checked")) choices+= "Top 40, ";
	if ($('#hip_hop').attr("checked")) choices+= "Hip Hop, ";
	if ($('#house').attr("checked")) choices+= "House, ";
	if ($('#randb').attr("checked")) choices+= "R&B, ";
	if ($('#reggae').attr("checked")) choices+= "Reggae, ";
	if ($('#latin').attr("checked")) choices+= "Latin, ";
	if ($('#mashups').attr("checked")) choices+= "Mashups, ";
	if ($('#electro').attr("checked")) choices+= "Electro, ";
	if ($('#80s').attr("checked")) choices+= "80s, ";
	if ($('#90s').attr("checked")) choices+= "90s";
	$("#music_preference").val(choices);
}

function list_venue_choices() {
	var choices = "";
	if ($('#bar').attr("checked")) choices+= "Bar, ";
	if ($('#lounge').attr("checked")) choices+= "Lounge, ";
	if ($('#nightclub').attr("checked")) choices+= "Nightclub, ";
	if ($('#rooftop').attr("checked")) choices+= "Rooftop, ";
	if ($('#laid_back').attr("checked")) choices+= "Laid Back, ";
	if ($('#sceney_trendy').attr("checked")) choices+= "Sceney/Trendy, ";
	if ($('#upscale').attr("checked")) choices+= "Upscale, ";
	if ($('#live_music').attr("checked")) choices+= "Live Music";
	$("#venue_preference").val(choices);

}
