// JavaScript Document

$(document).ready(function() {

	$("select.priceSelector").change(function(){
		$('.priceBox').slideUp();
		var opt_id = $(this).find("option:selected").attr("id");
		$('.'+opt_id).slideDown();
	});
                      
	var opt_id = $('select.priceSelector').find("option:selected").attr("id");
	$('.'+opt_id).show();
	
	$('#show_more_content').hide();

	$("#show_more_link").click(function(){
		$('#show_more_content').toggle();
		
		if ($('#show_more_content').is(':visible')) {
            $("#show_more_link").html('&laquo; Less Information');
        }
        else {
            $("#show_more_link").html('More Information &raquo;');
        }
		
		return false;
	});
	
	var tabContainers = $('#tab_container > div');
	tabContainers.addClass('tabhide').filter(':first').show();
			
	$('#show ul li a').click(function () {
		tabContainers.fadeIn();
		tabContainers.addClass('tabhide');
		tabContainers.filter(this.hash).removeClass('tabhide');
		$('#show ul li').removeClass('first');
		$(this).parent().addClass('first');
		return false;
	}).filter(':first').click();
	
	
});
