$(document).ready(function() {
	if ($.cookie('activetab')) 
	{
		var activetabId = $.cookie('activetab');        
		$('ul.tabs li').removeClass('active');		
		$('#tab_'+activetabId.replace('#','')).addClass('active').show();
		$('.tab_content').hide();		
		$(activetabId).show();

	}
	else
	{
		$('ul.tabs li:first').addClass("active").show();
		$('.tab_content').hide();
		$(".tab_content:first").show();	
	}
    
    $("ul.tabs li").click(function() {
        $("ul.tabs li").removeClass("active");
        $(this).addClass("active");
        $(".tab_content").hide();        		
		
        var activeTab = $(this).find("a").attr("href");
        $(activeTab).show();
		$.cookie('activetab',activeTab);
        return false;
    });
    
    $('#member_category_id').change(function()
    {
        var parent = $(this).parent();
        
        if ($(this).val() != 0)
        {
			$('.row.member_id').empty();
            $.get('includes/ajax.php',{ method: 'getMembersSelect', id: $(this).val() }, function(data) {
                $('<label for="member_id">Organisation : </label>'+data+'').appendTo('.row.member_id');
            });
        }
        else
        {
            $('.row.member_id').empty();
        }
    });
    
    $('#dealer_search_form').submit(function(e)
    {
        if ($('#member_category_id').val() == 0)
        {
            alert('Please select a Category and Organisation');
            e.preventDefault();   
            e.returnValue = false;
        }        
        if ($('#member_id').val() == 0)
        {
            alert('Please select an Organisation');
            e.preventDefault();
            e.returnValue = false;
        }
    });
});


