
$(document).ready(function()
{
    $('.brand').change(function()
    {
        var brand = $(this).val();

        $('.phone-block').hide();
        $('.' + brand + ' img[src=/images/no-image.gif]').each(function(){
            $(this).attr('src',$(this).attr('title'));
            $(this).attr('title',$(this).attr('alt'));
        });
        $('.' + brand).show();
        $('.select-model').hide();
        $('#sel-' + brand).show();
        $('.' + brand + ' .phone').show();
        $('#sel-' + brand + ' option:first').attr('selected', 'selected');
		
		// IE 6 fix
		$('#content span.left').height($('#content').height() + 38);
		$('#content span.right').height($('#content').height() + 38);
		$('#content span.bottom').addClass('bottom');
    });

    $('.select-model').live('change', function()
    {
        var model = $(this).val();
        var brand = $(this).attr('id').replace('sel-', '');

        if ( model == 'all' )
        {
            $('.' + brand + ' .phone').show();
        }
        else
        {
            $('.' + brand + ' .phone').hide();
            $('.' + model).show();
        }
		
		// IE 6 fix
		$('#content span.left').height($('#content').height() + 38);
		$('#content span.right').height($('#content').height() + 38);
		$('#content span.bottom').addClass('bottom');
    });
	
});

