/* chosen.js */

(function(){var a,b,c,d,e=function(a,b){return function(){return a.apply(b,arguments)}};d=this,a=jQuery,a.fn.extend({chosen:function(c){return a.browser!=="msie"||a.browser.version!=="6.0"&&a.browser.version!=="7.0"?a(this).each(function(d){if(!a(this).hasClass("chzn-done"))return new b(this,c)}):this}}),b=function(){function b(b,c){c==null&&(c={}),this.options=c,this.set_default_values(),this.form_field=b,this.form_field_jq=a(this.form_field),this.is_multiple=this.form_field.multiple,this.is_rtl=this.form_field_jq.hasClass("chzn-rtl"),this.default_text_default=this.form_field.multiple?"Select Some Options":"Select an Option",this.set_up_html(),this.register_observers(),this.form_field_jq.addClass("chzn-done")}b.prototype.set_default_values=function(){this.click_test_action=e(function(a){return this.test_active_click(a)},this),this.active_field=!1,this.mouse_on_container=!1,this.results_showing=!1,this.result_highlighted=null,this.result_single_selected=null,this.choices=0;return this.results_none_found=this.options.no_results_text||"No results match"},b.prototype.set_up_html=function(){var b,d,e,f;this.container_id=this.form_field.id.length?this.form_field.id.replace(/(:|\.)/g,"_"):this.generate_field_id(),this.container_id+="_chzn",this.f_width=this.form_field_jq.outerWidth(),this.default_text=this.form_field_jq.data("placeholder")?this.form_field_jq.data("placeholder"):this.default_text_default,b=a("<div />",{id:this.container_id,"class":"chzn-container "+(this.is_rtl?"chzn-rtl":""),style:"width: "+this.f_width+"px;"}),this.is_multiple?b.html('<ul class="chzn-choices"><li class="search-field"><input type="text" value="'+this.default_text+'" class="default" autocomplete="off" style="width:25px;" /></li></ul><div class="chzn-drop" style="left:-9000px;"><ul class="chzn-results"></ul></div>'):b.html('<a href="javascript:void(0)" class="chzn-single"><span>'+this.default_text+'</span><div><b></b></div></a><div class="chzn-drop" style="left:-9000px;"><div class="chzn-search"><input type="text" autocomplete="off" /></div><ul class="chzn-results"></ul></div>'),this.form_field_jq.hide().after(b),this.container=a("#"+this.container_id),this.container.addClass("chzn-container-"+(this.is_multiple?"multi":"single")),this.dropdown=this.container.find("div.chzn-drop").first(),d=this.container.height(),e=this.f_width-c(this.dropdown),this.dropdown.css({width:e+"px",top:d+"px"}),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chzn-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chzn-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chzn-search").first(),this.selected_item=this.container.find(".chzn-single").first(),f=e-c(this.search_container)-c(this.search_field),this.search_field.css({width:f+"px"})),this.results_build();return this.set_tab_index()},b.prototype.register_observers=function(){this.container.mousedown(e(function(a){return this.container_mousedown(a)},this)),this.container.mouseenter(e(function(a){return this.mouse_enter(a)},this)),this.container.mouseleave(e(function(a){return this.mouse_leave(a)},this)),this.search_results.mouseup(e(function(a){return this.search_results_mouseup(a)},this)),this.search_results.mouseover(e(function(a){return this.search_results_mouseover(a)},this)),this.search_results.mouseout(e(function(a){return this.search_results_mouseout(a)},this)),this.form_field_jq.bind("liszt:updated",e(function(a){return this.results_update_field(a)},this)),this.search_field.blur(e(function(a){return this.input_blur(a)},this)),this.search_field.keyup(e(function(a){return this.keyup_checker(a)},this)),this.search_field.keydown(e(function(a){return this.keydown_checker(a)},this));if(this.is_multiple){this.search_choices.click(e(function(a){return this.choices_click(a)},this));return this.search_field.focus(e(function(a){return this.input_focus(a)},this))}return this.selected_item.focus(e(function(a){return this.activate_field(a)},this))},b.prototype.container_mousedown=function(b){b&&b.type==="mousedown"&&b.stopPropagation();if(!this.pending_destroy_click){this.active_field?!this.is_multiple&&b&&(a(b.target)===this.selected_item||a(b.target).parents("a.chzn-single").length)&&(b.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),a(document).click(this.click_test_action),this.results_show());return this.activate_field()}return this.pending_destroy_click=!1},b.prototype.mouse_enter=function(){return this.mouse_on_container=!0},b.prototype.mouse_leave=function(){return this.mouse_on_container=!1},b.prototype.input_focus=function(a){if(!this.active_field)return setTimeout(e(function(){return this.container_mousedown()},this),50)},b.prototype.input_blur=function(a){if(!this.mouse_on_container){this.active_field=!1;return setTimeout(e(function(){return this.blur_test()},this),100)}},b.prototype.blur_test=function(a){if(!this.active_field&&this.container.hasClass("chzn-container-active"))return this.close_field()},b.prototype.close_field=function(){a(document).unbind("click",this.click_test_action),this.is_multiple||(this.selected_item.attr("tabindex",this.search_field.attr("tabindex")),this.search_field.attr("tabindex",-1)),this.active_field=!1,this.results_hide(),this.container.removeClass("chzn-container-active"),this.winnow_results_clear(),this.clear_backstroke(),this.show_search_field_default();return this.search_field_scale()},b.prototype.activate_field=function(){!this.is_multiple&&!this.active_field&&(this.search_field.attr("tabindex",this.selected_item.attr("tabindex")),this.selected_item.attr("tabindex",-1)),this.container.addClass("chzn-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val());return this.search_field.focus()},b.prototype.test_active_click=function(b){return a(b.target).parents("#"+this.container_id).length?this.active_field=!0:this.close_field()},b.prototype.results_build=function(){var a,b,c,e,f,g;c=new Date,this.parsing=!0,this.results_data=d.SelectParser.select_to_array(this.form_field),this.is_multiple&&this.choices>0?(this.search_choices.find("li.search-choice").remove(),this.choices=0):this.is_multiple||this.selected_item.find("span").text(this.default_text),a="",g=this.results_data;for(e=0,f=g.length;e<f;e++)b=g[e],b.group?a+=this.result_add_group(b):b.empty||(a+=this.result_add_option(b),b.selected&&this.is_multiple?this.choice_build(b):b.selected&&!this.is_multiple&&this.selected_item.find("span").text(b.text));this.show_search_field_default(),this.search_field_scale(),this.search_results.html(a);return this.parsing=!1},b.prototype.result_add_group=function(b){if(!b.disabled){b.dom_id=this.container_id+"_g_"+b.array_index;return'<li id="'+b.dom_id+'" class="group-result">'+a("<div />").text(b.label).html()+"</li>"}return""},b.prototype.result_add_option=function(a){var b;if(!a.disabled){a.dom_id=this.container_id+"_o_"+a.array_index,b=a.selected&&this.is_multiple?[]:["active-result"],a.selected&&b.push("result-selected"),a.group_array_index!=null&&b.push("group-option");return'<li id="'+a.dom_id+'" class="'+b.join(" ")+'">'+a.html+"</li>"}return""},b.prototype.results_update_field=function(){this.result_clear_highlight(),this.result_single_selected=null;return this.results_build()},b.prototype.result_do_highlight=function(a){var b,c,d,e,f;if(a.length){this.result_clear_highlight(),this.result_highlight=a,this.result_highlight.addClass("highlighted"),d=parseInt(this.search_results.css("maxHeight"),10),f=this.search_results.scrollTop(),e=d+f,c=this.result_highlight.position().top+this.search_results.scrollTop(),b=c+this.result_highlight.outerHeight();if(b>=e)return this.search_results.scrollTop(b-d>0?b-d:0);if(c<f)return this.search_results.scrollTop(c)}},b.prototype.result_clear_highlight=function(){this.result_highlight&&this.result_highlight.removeClass("highlighted");return this.result_highlight=null},b.prototype.results_toggle=function(){return this.results_showing?this.results_hide():this.results_show()},b.prototype.results_show=function(){var a;this.is_multiple||(this.selected_item.addClass("chzn-single-with-drop"),this.result_single_selected&&this.result_do_highlight(this.result_single_selected)),a=this.is_multiple?this.container.height():this.container.height()-1,this.dropdown.css({top:a+"px",left:0}),this.results_showing=!0,this.search_field.focus(),this.search_field.val(this.search_field.val());return this.winnow_results()},b.prototype.results_hide=function(){this.is_multiple||this.selected_item.removeClass("chzn-single-with-drop"),this.result_clear_highlight(),this.dropdown.css({left:"-9000px"});return this.results_showing=!1},b.prototype.set_tab_index=function(a){var b;if(this.form_field_jq.attr("tabindex")){b=this.form_field_jq.attr("tabindex"),this.form_field_jq.attr("tabindex",-1);if(this.is_multiple)return this.search_field.attr("tabindex",b);this.selected_item.attr("tabindex",b);return this.search_field.attr("tabindex",-1)}},b.prototype.show_search_field_default=function(){if(this.is_multiple&&this.choices<1&&!this.active_field){this.search_field.val(this.default_text);return this.search_field.addClass("default")}this.search_field.val("");return this.search_field.removeClass("default")},b.prototype.search_results_mouseup=function(b){var c;c=a(b.target).hasClass("active-result")?a(b.target):a(b.target).parents(".active-result").first();if(c.length){this.result_highlight=c;return this.result_select(b)}},b.prototype.search_results_mouseover=function(b){var c;c=a(b.target).hasClass("active-result")?a(b.target):a(b.target).parents(".active-result").first();if(c)return this.result_do_highlight(c)},b.prototype.search_results_mouseout=function(b){if(a(b.target).hasClass("active-result"))return this.result_clear_highlight()},b.prototype.choices_click=function(b){b.preventDefault();if(this.active_field&&!a(b.target).hasClass("search-choice")&&!this.results_showing)return this.results_show()},b.prototype.choice_build=function(b){var c,d;c=this.container_id+"_c_"+b.array_index,this.choices+=1,this.search_container.before('<li class="search-choice" id="'+c+'"><span>'+b.html+'</span><a href="javascript:void(0)" class="search-choice-close" rel="'+b.array_index+'"></a></li>'),d=a("#"+c).find("a").first();return d.click(e(function(a){return this.choice_destroy_link_click(a)},this))},b.prototype.choice_destroy_link_click=function(b){b.preventDefault(),this.pending_destroy_click=!0;return this.choice_destroy(a(b.target))},b.prototype.choice_destroy=function(a){this.choices-=1,this.show_search_field_default(),this.is_multiple&&this.choices>0&&this.search_field.val().length<1&&this.results_hide(),this.result_deselect(a.attr("rel"));return a.parents("li").first().remove()},b.prototype.result_select=function(a){var b,c,d,e;if(this.result_highlight){b=this.result_highlight,c=b.attr("id"),this.result_clear_highlight(),b.addClass("result-selected"),this.is_multiple?this.result_deactivate(b):this.result_single_selected=b,e=c.substr(c.lastIndexOf("_")+1),d=this.results_data[e],d.selected=!0,this.form_field.options[d.options_index].selected=!0,this.is_multiple?this.choice_build(d):this.selected_item.find("span").first().text(d.text),(!a.metaKey||!this.is_multiple)&&this.results_hide(),this.search_field.val(""),this.form_field_jq.trigger("change");return this.search_field_scale()}},b.prototype.result_activate=function(a){return a.addClass("active-result").show()},b.prototype.result_deactivate=function(a){return a.removeClass("active-result").hide()},b.prototype.result_deselect=function(b){var c,d;d=this.results_data[b],d.selected=!1,this.form_field.options[d.options_index].selected=!1,c=a("#"+this.container_id+"_o_"+b),c.removeClass("result-selected").addClass("active-result").show(),this.result_clear_highlight(),this.winnow_results(),this.form_field_jq.trigger("change");return this.search_field_scale()},b.prototype.results_search=function(a){return this.results_showing?this.winnow_results():this.results_show()},b.prototype.winnow_results=function(){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;j=new Date,this.no_results_clear(),h=0,i=this.search_field.val()===this.default_text?"":a("<div/>").text(a.trim(this.search_field.val())).html(),f=new RegExp("^"+i.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"i"),m=new RegExp(i.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"i"),r=this.results_data;for(n=0,p=r.length;n<p;n++){c=r[n];if(!c.disabled&&!c.empty)if(c.group)a("#"+c.dom_id).hide();else if(!this.is_multiple||!c.selected){b=!1,g=c.dom_id;if(f.test(c.html))b=!0,h+=1;else if(c.html.indexOf(" ")>=0||c.html.indexOf("[")===0){e=c.html.replace(/\[|\]/g,"").split(" ");if(e.length)for(o=0,q=e.length;o<q;o++)d=e[o],f.test(d)&&(b=!0,h+=1)}b?(i.length?(k=c.html.search(m),l=c.html.substr(0,k+i.length)+"</em>"+c.html.substr(k+i.length),l=l.substr(0,k)+"<em>"+l.substr(k)):l=c.html,a("#"+g).html!==l&&a("#"+g).html(l),this.result_activate(a("#"+g)),c.group_array_index!=null&&a("#"+this.results_data[c.group_array_index].dom_id).show()):(this.result_highlight&&g===this.result_highlight.attr("id")&&this.result_clear_highlight(),this.result_deactivate(a("#"+g)))}}return h<1&&i.length?this.no_results(i):this.winnow_results_set_highlight()},b.prototype.winnow_results_clear=function(){var b,c,d,e,f;this.search_field.val(""),c=this.search_results.find("li"),f=[];for(d=0,e=c.length;d<e;d++)b=c[d],b=a(b),f.push(b.hasClass("group-result")?b.show():!this.is_multiple||!b.hasClass("result-selected")?this.result_activate(b):void 0);return f},b.prototype.winnow_results_set_highlight=function(){var a,b;if(!this.result_highlight){b=this.is_multiple?[]:this.search_results.find(".result-selected"),a=b.length?b.first():this.search_results.find(".active-result").first();if(a!=null)return this.result_do_highlight(a)}},b.prototype.no_results=function(b){var c;c=a('<li class="no-results">'+this.results_none_found+' "<span></span>"</li>'),c.find("span").first().html(b);return this.search_results.append(c)},b.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},b.prototype.keydown_arrow=function(){var b,c;this.result_highlight?this.results_showing&&(c=this.result_highlight.nextAll("li.active-result").first(),c&&this.result_do_highlight(c)):(b=this.search_results.find("li.active-result").first(),b&&this.result_do_highlight(a(b)));if(!this.results_showing)return this.results_show()},b.prototype.keyup_arrow=function(){var a;if(!this.results_showing&&!this.is_multiple)return this.results_show();if(this.result_highlight){a=this.result_highlight.prevAll("li.active-result");if(a.length)return this.result_do_highlight(a.first());this.choices>0&&this.results_hide();return this.result_clear_highlight()}},b.prototype.keydown_backstroke=function(){if(this.pending_backstroke){this.choice_destroy(this.pending_backstroke.find("a").first());return this.clear_backstroke()}this.pending_backstroke=this.search_container.siblings("li.search-choice").last();return this.pending_backstroke.addClass("search-choice-focus")},b.prototype.clear_backstroke=function(){this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus");return this.pending_backstroke=null},b.prototype.keyup_checker=function(a){var b,c;b=(c=a.which)!=null?c:a.keyCode,this.search_field_scale();switch(b){case 8:if(this.is_multiple&&this.backstroke_length<1&&this.choices>0)return this.keydown_backstroke();if(!this.pending_backstroke){this.result_clear_highlight();return this.results_search()}break;case 13:a.preventDefault();if(this.results_showing)return this.result_select(a);break;case 27:if(this.results_showing)return this.results_hide();break;case 9:case 38:case 40:case 16:case 91:case 17:break;default:return this.results_search()}},b.prototype.keydown_checker=function(a){var b,c;b=(c=a.which)!=null?c:a.keyCode,this.search_field_scale(),b!==8&&this.pending_backstroke&&this.clear_backstroke();switch(b){case 8:this.backstroke_length=this.search_field.val().length;break;case 9:this.mouse_on_container=!1;break;case 13:a.preventDefault();break;case 38:a.preventDefault(),this.keyup_arrow();break;case 40:this.keydown_arrow()}},b.prototype.search_field_scale=function(){var b,c,d,e,f,g,h,i,j;if(this.is_multiple){d=0,h=0,f="position:absolute; left: -1000px; top: -1000px; display:none;",g=["font-size","font-style","font-weight","font-family","line-height","text-transform","letter-spacing"];for(i=0,j=g.length;i<j;i++)e=g[i],f+=e+":"+this.search_field.css(e)+";";c=a("<div />",{style:f}),c.text(this.search_field.val()),a("body").append(c),h=c.width()+25,c.remove(),h>this.f_width-10&&(h=this.f_width-10),this.search_field.css({width:h+"px"}),b=this.container.height();return this.dropdown.css({top:b+"px"})}},b.prototype.generate_field_id=function(){var a;a=this.generate_random_id(),this.form_field.id=a;return a},b.prototype.generate_random_id=function(){var b;b="sel"+this.generate_random_char()+this.generate_random_char()+this.generate_random_char();while(a("#"+b).length>0)b+=this.generate_random_char();return b},b.prototype.generate_random_char=function(){var a,b,c;a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ",c=Math.floor(Math.random()*a.length);return b=a.substring(c,c+1)};return b}(),c=function(a){var b;return b=a.outerWidth()-a.width()},d.get_side_border_padding=c}).call(this),function(){var a;a=function(){function a(){this.options_index=0,this.parsed=[]}a.prototype.add_node=function(a){return a.nodeName==="OPTGROUP"?this.add_group(a):this.add_option(a)},a.prototype.add_group=function(a){var b,c,d,e,f,g;b=this.parsed.length,this.parsed.push({array_index:b,group:!0,label:a.label,children:0,disabled:a.disabled}),f=a.childNodes,g=[];for(d=0,e=f.length;d<e;d++)c=f[d],g.push(this.add_option(c,b,a.disabled));return g},a.prototype.add_option=function(a,b,c){if(a.nodeName==="OPTION"){a.text!==""?(b!=null&&(this.parsed[b].children+=1),this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,value:a.value,text:a.text,html:a.innerHTML,selected:a.selected,disabled:c===!0?c:a.disabled,group_array_index:b})):this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,empty:!0});return this.options_index+=1}};return a}(),a.select_to_array=function(b){var c,d,e,f,g;d=new a,g=b.childNodes;for(e=0,f=g.length;e<f;e++)c=g[e],d.add_node(c);return d.parsed},this.SelectParser=a}.call(this);

$(document).ready(function(){
         /*Since all the tabs are hidden with css we are displaying the tab with class .active_tab using fadeIn()
         function. If you just want it to show with no effect, just put show() instead of fadeIn() */
        $('.active_tab').fadeIn();

        //when a tab link is clicked...
        $('.tab_link').live('click', function(event){

            /*...prevent the default behaviour...*/
            event.preventDefault();

            /* ...remove the tab_link_selected class from current active link... */
            $('.tab_link_selected').removeClass('tab_link_selected');

            /* ...and add it to the new active link */
            $(this).addClass('tab_link_selected');

            /*...get the title attribute (which corensponds to the id of the needed text container),
            but you can use any attribute you want*/
            var container_id = $(this).attr('title');

            //...animate the current active_tab by changing it's height and opacity ...'
            $('.active_tab').animate({

                height : 'toggle' , opacity : 'toggle'

            //...and when that animation ends...
            },function(){

                //...remove the active_tab class from the current active tab...
                $(this).removeClass('active_tab');

                //...and add that class to the tab that corensponds the clicked link...
                $(container_id).addClass('active_tab');

                //...and animate the new active_tab by using toggle on height and opacity again...
                $('.active_tab').animate({

                    height : 'toggle' , opacity : 'toggle'

                });
            });

        });
	
//Set default open/close settings
$('.acc_container').hide(); //Hide/close all containers
//$('.acc_trigger:first').addClass('active').next().show(); Add "active" class to first trigger, then show/open the immediate next container

//On Click
$('.acc_trigger').click(function(){
	if ( $(this).hasClass('active') ) {
	  $('.acc_trigger').removeClass('active').next().slideUp();
	}
	if( $(this).next().is(':hidden') ) { //If immediate next container is closed...
		$('.acc_trigger').removeClass('active').next().slideUp(); //Remove all .acc_trigger classes and slide up the immediate next container
		$(this).toggleClass('active').next().slideDown(); //Add .acc_trigger class to clicked trigger and slide down the immediate next container
	}
	return false; //Prevent the browser jump to the link anchor
});

        $('#slider1').bxSlider({
            mode: 'horizontal',                 // 'horizontal', 'vertical', 'fade'
infiniteLoop: true,                 // true, false - display first slide after last
hideControlOnEnd: false,            // true, false - if true, will hide 'next' control on last slide and 'prev' control on first
controls: true,                     // true, false - previous and next controls
speed: 500,                         // integer - in ms, duration of time slide transitions will occupy
easing: 'swing',                    // used with jquery.easing.1.3.js - see http://gsgd.co.uk/sandbox/jquery/easing/ for available options
pager: true,                        // true / false - display a pager
pagerSelector: null,                // jQuery selector - element to contain the pager. ex: '#pager'
pagerType: 'full',                  // 'full', 'short' - if 'full' pager displays 1,2,3... if 'short' pager displays 1 / 4
pagerLocation: 'top',            // 'bottom', 'top' - location of pager
pagerShortSeparator: '/',           // string - ex: 'of' pager would display 1 of 4
pagerActiveClass: 'pager-active',   // string - classname attached to the active pager link
nextText: 'next',                   // string - text displayed for 'next' control
nextImage: '',                      // string - filepath of image used for 'next' control. ex: 'images/next.jpg'
nextSelector: null,                 // jQuery selector - element to contain the next control. ex: '#next'
prevText: 'prev',                   // string - text displayed for 'previous' control
prevImage: '',                      // string - filepath of image used for 'previous' control. ex: 'images/prev.jpg'
prevSelector: null,                 // jQuery selector - element to contain the previous control. ex: '#next'
captions: false,                    // true, false - display image captions (reads the image 'title' tag)
captionsSelector: null,             // jQuery selector - element to contain the captions. ex: '#captions'
auto: false,                        // true, false - make slideshow change automatically
autoDirection: 'next',              // 'next', 'prev' - direction in which auto show will traverse
autoControls: false,                // true, false - show 'start' and 'stop' controls for auto show
autoControlsSelector: null,         // jQuery selector - element to contain the auto controls. ex: '#auto-controls'
autoStart: true,                    // true, false - if false show will wait for 'start' control to activate
autoHover: false,                   // true, false - if true show will pause on mouseover
autoDelay: 0,                       // integer - in ms, the amount of time before starting the auto show
pause: 8000,                        // integer - in ms, the duration between each slide transition
startText: 'start',                 // string - text displayed for 'start' control
startImage: '',                     // string - filepath of image used for 'start' control. ex: 'images/start.jpg'
stopText: 'stop',                   // string - text displayed for 'stop' control
stopImage: '',                      // string - filepath of image used for 'stop' control. ex: 'images/stop.jpg'
ticker: false,                      // true, false - continuous motion ticker mode (think news ticker)
                                    // note: autoControls and autoControlsSelector apply to ticker!
tickerSpeed: 5000,                  // integer - has an inverse effect on speed. therefore, a value of 10000 will 
                                    // scroll very slowly while a value of 50 will scroll very quickly.
tickerDirection: 'next',            // 'next', 'prev' - direction in which ticker show will traverse
tickerHover: false,                 // true, false - if true ticker will pause on mouseover
wrapperClass: 'bx-wrapper',         // string - classname attached to the slider wraper
startingSlide: 0,                   // integer - show will start on specified slide. note: slides are zero based!
displaySlideQty: 1,                 // integer - number of slides to display at once
moveSlideQty: 1,                    // integer - number of slides to move at once
randomStart: false                 // true, false - if true show will start on a random slide       
        });
        
        $('#slider2').bxSlider({
            mode: 'horizontal',                 // 'horizontal', 'vertical', 'fade'
infiniteLoop: true,                 // true, false - display first slide after last
hideControlOnEnd: false,            // true, false - if true, will hide 'next' control on last slide and 'prev' control on first
controls: true,                     // true, false - previous and next controls
speed: 500,                         // integer - in ms, duration of time slide transitions will occupy
easing: 'swing',                    // used with jquery.easing.1.3.js - see http://gsgd.co.uk/sandbox/jquery/easing/ for available options
pager: true,                        // true / false - display a pager
pagerSelector: null,                // jQuery selector - element to contain the pager. ex: '#pager'
pagerType: 'full',                  // 'full', 'short' - if 'full' pager displays 1,2,3... if 'short' pager displays 1 / 4
pagerLocation: 'top',            // 'bottom', 'top' - location of pager
pagerShortSeparator: '/',           // string - ex: 'of' pager would display 1 of 4
pagerActiveClass: 'pager-active',   // string - classname attached to the active pager link
nextText: 'next',                   // string - text displayed for 'next' control
nextImage: '',                      // string - filepath of image used for 'next' control. ex: 'images/next.jpg'
nextSelector: null,                 // jQuery selector - element to contain the next control. ex: '#next'
prevText: 'prev',                   // string - text displayed for 'previous' control
prevImage: '',                      // string - filepath of image used for 'previous' control. ex: 'images/prev.jpg'
prevSelector: null,                 // jQuery selector - element to contain the previous control. ex: '#next'
captions: false,                    // true, false - display image captions (reads the image 'title' tag)
captionsSelector: null,             // jQuery selector - element to contain the captions. ex: '#captions'
auto: false,                        // true, false - make slideshow change automatically
autoDirection: 'next',              // 'next', 'prev' - direction in which auto show will traverse
autoControls: false,                // true, false - show 'start' and 'stop' controls for auto show
autoControlsSelector: null,         // jQuery selector - element to contain the auto controls. ex: '#auto-controls'
autoStart: true,                    // true, false - if false show will wait for 'start' control to activate
autoHover: false,                   // true, false - if true show will pause on mouseover
autoDelay: 0,                       // integer - in ms, the amount of time before starting the auto show
pause: 8000,                        // integer - in ms, the duration between each slide transition
startText: 'start',                 // string - text displayed for 'start' control
startImage: '',                     // string - filepath of image used for 'start' control. ex: 'images/start.jpg'
stopText: 'stop',                   // string - text displayed for 'stop' control
stopImage: '',                      // string - filepath of image used for 'stop' control. ex: 'images/stop.jpg'
ticker: false,                      // true, false - continuous motion ticker mode (think news ticker)
                                    // note: autoControls and autoControlsSelector apply to ticker!
tickerSpeed: 5000,                  // integer - has an inverse effect on speed. therefore, a value of 10000 will 
                                    // scroll very slowly while a value of 50 will scroll very quickly.
tickerDirection: 'next',            // 'next', 'prev' - direction in which ticker show will traverse
tickerHover: false,                 // true, false - if true ticker will pause on mouseover
wrapperClass: 'bx-wrapper',         // string - classname attached to the slider wraper
startingSlide: 0,                   // integer - show will start on specified slide. note: slides are zero based!
displaySlideQty: 1,                 // integer - number of slides to display at once
moveSlideQty: 1,                    // integer - number of slides to move at once
randomStart: false                 // true, false - if true show will start on a random slide       
        });
   
        $('#slider3').bxSlider({
            mode: 'horizontal',                 // 'horizontal', 'vertical', 'fade'
infiniteLoop: true,                 // true, false - display first slide after last
hideControlOnEnd: false,            // true, false - if true, will hide 'next' control on last slide and 'prev' control on first
controls: true,                     // true, false - previous and next controls
speed: 500,                         // integer - in ms, duration of time slide transitions will occupy
easing: 'swing',                    // used with jquery.easing.1.3.js - see http://gsgd.co.uk/sandbox/jquery/easing/ for available options
pager: true,                        // true / false - display a pager
pagerSelector: null,                // jQuery selector - element to contain the pager. ex: '#pager'
pagerType: 'full',                  // 'full', 'short' - if 'full' pager displays 1,2,3... if 'short' pager displays 1 / 4
pagerLocation: 'top',            // 'bottom', 'top' - location of pager
pagerShortSeparator: '/',           // string - ex: 'of' pager would display 1 of 4
pagerActiveClass: 'pager-active',   // string - classname attached to the active pager link
nextText: 'next',                   // string - text displayed for 'next' control
nextImage: '',                      // string - filepath of image used for 'next' control. ex: 'images/next.jpg'
nextSelector: null,                 // jQuery selector - element to contain the next control. ex: '#next'
prevText: 'prev',                   // string - text displayed for 'previous' control
prevImage: '',                      // string - filepath of image used for 'previous' control. ex: 'images/prev.jpg'
prevSelector: null,                 // jQuery selector - element to contain the previous control. ex: '#next'
captions: false,                    // true, false - display image captions (reads the image 'title' tag)
captionsSelector: null,             // jQuery selector - element to contain the captions. ex: '#captions'
auto: false,                        // true, false - make slideshow change automatically
autoDirection: 'next',              // 'next', 'prev' - direction in which auto show will traverse
autoControls: false,                // true, false - show 'start' and 'stop' controls for auto show
autoControlsSelector: null,         // jQuery selector - element to contain the auto controls. ex: '#auto-controls'
autoStart: true,                    // true, false - if false show will wait for 'start' control to activate
autoHover: false,                   // true, false - if true show will pause on mouseover
autoDelay: 0,                       // integer - in ms, the amount of time before starting the auto show
pause: 8000,                        // integer - in ms, the duration between each slide transition
startText: 'start',                 // string - text displayed for 'start' control
startImage: '',                     // string - filepath of image used for 'start' control. ex: 'images/start.jpg'
stopText: 'stop',                   // string - text displayed for 'stop' control
stopImage: '',                      // string - filepath of image used for 'stop' control. ex: 'images/stop.jpg'
ticker: false,                      // true, false - continuous motion ticker mode (think news ticker)
                                    // note: autoControls and autoControlsSelector apply to ticker!
tickerSpeed: 5000,                  // integer - has an inverse effect on speed. therefore, a value of 10000 will 
                                    // scroll very slowly while a value of 50 will scroll very quickly.
tickerDirection: 'next',            // 'next', 'prev' - direction in which ticker show will traverse
tickerHover: false,                 // true, false - if true ticker will pause on mouseover
wrapperClass: 'bx-wrapper',         // string - classname attached to the slider wraper
startingSlide: 0,                   // integer - show will start on specified slide. note: slides are zero based!
displaySlideQty: 1,                 // integer - number of slides to display at once
moveSlideQty: 1,                    // integer - number of slides to move at once
randomStart: false                 // true, false - if true show will start on a random slide       
        });
		
		$('#slider4').bxSlider({
            mode: 'horizontal',                 // 'horizontal', 'vertical', 'fade'
infiniteLoop: true,                 // true, false - display first slide after last
hideControlOnEnd: false,            // true, false - if true, will hide 'next' control on last slide and 'prev' control on first
controls: true,                     // true, false - previous and next controls
speed: 500,                         // integer - in ms, duration of time slide transitions will occupy
easing: 'swing',                    // used with jquery.easing.1.3.js - see http://gsgd.co.uk/sandbox/jquery/easing/ for available options
pager: true,                        // true / false - display a pager
pagerSelector: null,                // jQuery selector - element to contain the pager. ex: '#pager'
pagerType: 'full',                  // 'full', 'short' - if 'full' pager displays 1,2,3... if 'short' pager displays 1 / 4
pagerLocation: 'top',            // 'bottom', 'top' - location of pager
pagerShortSeparator: '/',           // string - ex: 'of' pager would display 1 of 4
pagerActiveClass: 'pager-active',   // string - classname attached to the active pager link
nextText: 'next',                   // string - text displayed for 'next' control
nextImage: '',                      // string - filepath of image used for 'next' control. ex: 'images/next.jpg'
nextSelector: null,                 // jQuery selector - element to contain the next control. ex: '#next'
prevText: 'prev',                   // string - text displayed for 'previous' control
prevImage: '',                      // string - filepath of image used for 'previous' control. ex: 'images/prev.jpg'
prevSelector: null,                 // jQuery selector - element to contain the previous control. ex: '#next'
captions: false,                    // true, false - display image captions (reads the image 'title' tag)
captionsSelector: null,             // jQuery selector - element to contain the captions. ex: '#captions'
auto: false,                        // true, false - make slideshow change automatically
autoDirection: 'next',              // 'next', 'prev' - direction in which auto show will traverse
autoControls: false,                // true, false - show 'start' and 'stop' controls for auto show
autoControlsSelector: null,         // jQuery selector - element to contain the auto controls. ex: '#auto-controls'
autoStart: true,                    // true, false - if false show will wait for 'start' control to activate
autoHover: false,                   // true, false - if true show will pause on mouseover
autoDelay: 0,                       // integer - in ms, the amount of time before starting the auto show
pause: 8000,                        // integer - in ms, the duration between each slide transition
startText: 'start',                 // string - text displayed for 'start' control
startImage: '',                     // string - filepath of image used for 'start' control. ex: 'images/start.jpg'
stopText: 'stop',                   // string - text displayed for 'stop' control
stopImage: '',                      // string - filepath of image used for 'stop' control. ex: 'images/stop.jpg'
ticker: false,                      // true, false - continuous motion ticker mode (think news ticker)
                                    // note: autoControls and autoControlsSelector apply to ticker!
tickerSpeed: 5000,                  // integer - has an inverse effect on speed. therefore, a value of 10000 will 
                                    // scroll very slowly while a value of 50 will scroll very quickly.
tickerDirection: 'next',            // 'next', 'prev' - direction in which ticker show will traverse
tickerHover: false,                 // true, false - if true ticker will pause on mouseover
wrapperClass: 'bx-wrapper',         // string - classname attached to the slider wraper
startingSlide: 0,                   // integer - show will start on specified slide. note: slides are zero based!
displaySlideQty: 1,                 // integer - number of slides to display at once
moveSlideQty: 1,                    // integer - number of slides to move at once
randomStart: false                 // true, false - if true show will start on a random slide       
        });
	
	// set up array of future applicable degrees for each of the degrees available
	var degreeMatch = {
						bach: {
						  futureDegrees: 'grad,med,eds,edd,phd'
						},
						altcert: {
						  futureDegrees: 'grad,med,eds,edd,phd'
						},
						grad: {
							futureDegrees: 'med,eds,edd,phd'
						},
						mat: {
						  futureDegrees: 'grad,eds,edd,phd'
						},
						med: {
						  futureDegrees: 'grad,eds,edd,phd'
						},
						eds: {
							futureDegrees: 'grad,edd,phd'
						},
						edd: {
							futureDegrees: ''	
						},
						phd: {
						  futureDegrees: ''
						}
	};
					   
	// every time someone changes the answer in the select box
	$('#degreeSelect').change(function() {
									   
		// clear the decks - de-select all degrees, hide any open degree blurbs
		$('div.degree').removeClass('chosen');
		$('div.degree').removeClass('future');
		$('div.degree span.next').remove();
		$('div.blurb:visible').toggle('fast',function(){
			// toggle complete
		});
		
		var degreeChosen = $('#degreeSelect > option:selected').val().split(',');
		
		// we need to iterate through because some visitor profiles have multiple immediately applicable degrees
		$.each(degreeChosen, function(){
			
			// highlight the degrees that are immediately applicable to them given their background
			$('#'+this+'').addClass('chosen');
			$('#'+this+' h2').append(' <span class="next"></span>');
			
		});
		
	});
	
	// when someone clicks on a degree box
	$('div.degree').click(function(){
		// check to see if this degree is applicable to them based on the select menu option chosen
		if ($(this).hasClass('chosen') || $(this).hasClass('future')) {
    
			var degree = this.id;
	  
			// clear "picked"  
	  		$('div.degree').removeClass('picked');
	  		$('#'+degree+'').addClass('picked');
	  
      		// if we're clicking on an immediate next degree, reset the future degree options
	    	if ($(this).hasClass('chosen')) {
			  $('div.future h2 span.next').remove();
			  $('div.degree').removeClass('future');
			}
			
			// hide any open degree blurbs
			$('div.blurb:visible').toggle('fast',function(){
				// toggle complete
			});
			
			// show this degree blurb if it isn't already shown
			$('.'+degree+':hidden').toggle('fast',function(){
				// toggle complete
			});
			
			// if there are future degrees applicable to them after they complete the next degree, highlight those too
			
			if(degreeMatch[degree].futureDegrees) {
				var futureDegrees = degreeMatch[degree].futureDegrees.split(',');
				$.each(futureDegrees,function(){
					var futureDegree = this;
	        		$('#'+futureDegree+'').removeClass('chosen');
					$('#'+futureDegree+'').addClass('future');
					$('#'+futureDegree+' h2 span.next').remove();
					$('#'+futureDegree+' h2').append(' <span class="next"></span>');
				});
			}
			
			
		}
	});
	
	$('#stateHead').click(function() {
      $('#stateContainer .block .stateInfo').addClass('hidden');
      $('#stateContainer select').chosen();  
  });
  
  $('#stateSelect').change(function() {
    var stateName = $(this).val();
    $('#stateContainer .block .stateInfo').addClass('hidden');
    $('#stateContainer .block .stateInfo[name="'+stateName+'"]').removeClass('hidden');
  });
	
});
