         $(document).ready(function(){
	
                $('#my-dropdown, #cruises-dropdown, #hotel-dropdown, #tours-dropdown, #restaurants-dropdown, #night_life-dropdown, #rentals-dropdown, #estates-dropdown, #specials-dropdown').sSelect();
		
                //set max height
                $('#my-destination').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-cruises').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-hotel').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-tours').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-restaurants').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-night_life').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-rentals ').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-estates').sSelect({ddMaxHeight: '300px'});
				
				//set max height
                $('#my-specials').sSelect({ddMaxHeight: '300px'});
		
		
                //set value on click
                $('#setVal').click(function(){
                    $('#my-dropdown5').getSetSSValue('4');
                });

                //get value on click
                $('#getVal').click(function(){
                    alert('The value is: '+$('#my-dropdown5').getSetSSValue());
                });

                //alert change event
                $('#my-dropdownChange').sSelect().change(function(){alert('changed')});

                //add options to select and update
                $('#addOptions').click(function(){
                    $('#my-dropdown6').append('<option value="newOpt">New Option</option>').resetSS();
                });
		
            });
