
$('.input-select').ready(function(){
	$('body').click(function(){
		$('.input-select ul').hide('fast');
	});
	
	$('.input-select').click(function(event){
		event.stopPropagation();
	});
	
    var html = '';
    html += '<div class="title cursor"></div>';
    html += '<ul><li class="s-bg-top"></li>'
    $('.input-select option').each(function(){
        var value = $(this).val();
        var text = $(this).text();
        html += '<li class="item" rel="'+value+'">'+text+'</li>';
    });
    html += '<li class="s-bg-bottom"></li></ul>'
    $('.input-select').append(html);
    $('.input-select .title').text('- '+$('.input-select option:selected').text()+' -');

    $('.input-select .cursor').click(function(){
        $('.input-select ul').toggle('fast');
    });


    $('.input-select li.item').click(function(){
        $('.input-select select').val($(this).attr('rel'));
        $('.input-select .title').text('- '+$(this).text()+' -');
        $('.input-select ul').hide('fast');
        $('.input-select input').focus();
    });
    $('.input-select input').focus(function(){
        $('.input-select ul').hide('fast');
    });
});

