$(document).ready(function() {
    
    $('#main_nav_text a').click(function() {
        if ($('#content_of_main').attr('class').indexOf('show_content') !== -1) {
            return false;
        } else {
            if (window.document.location.href.indexOf('dev.arcreps.com') !== - 1) {
                if (window.document.location.href.indexOf('/demo/') !== -1) {
                    window.document.location.href = '/demo/photographers/info/?a=main';
                } else {
                    window.document.location.href = '/arcreps/photographers/info/?a=main';
                }
            } else if (window.document.location.href.indexOf('dichirico.com') !== -1) {
                if (window.document.location.href.indexOf('/demo/') !== -1) {
                    window.document.location.href = '/demo/photographers/info/?a=main';
                } else {
                    window.document.location.href = '/arcreps/photographers/info/?a=main';
                }
            } else {
                window.document.location.href = '/photographers/info/?a=main';
            }
        }

        $('#content_of_main').slideDown().removeClass('hide_content');
        // hide the div that currently has active state:
        $('.show_content').slideUp();
        $('.show_content').addClass('hide_content');
        $('.show_content').removeClass('show_content');
        
        $('#content_of_main').addClass('show_content');
        
        $('.active_state').addClass('inactive_state').removeClass('active_state');
        $('#main_nav_text a').removeClass('inactive_state').addClass('active_state');

    });

    $('#contact_nav_text a').mouseover(function() {
        if ($('#contact_info_inner_wrapper').hasClass('hide_contact_info_inner_wrapper')) {
            $('#contact_info_inner_wrapper').fadeIn().removeClass('hide_contact_info_inner_wrapper').addClass('show_contact_info_inner_wrapper');
        }   
    }); 

    $('#contact_nav_text a').mouseout(function() {
        if ($('#contact_info_inner_wrapper').hasClass('show_contact_info_inner_wrapper')) {
            $('#contact_info_inner_wrapper').fadeOut().removeClass('show_contact_info_inner_wrapper').addClass('hide_contact_info_inner_wrapper');
        }   
    }); 



    $('#contact_nav_text a').click(function() {
        if ($('#content_of_contact').attr('class').indexOf('show_content') !== - 1) {
            return false;
        }

        $('#content_of_contact').slideDown().removeClass('hide_content')
        // hide the div that currently has active state:
        $('.show_content').slideUp();
        $('.show_content').addClass('hide_content');
        $('.show_content').removeClass('show_content');
        $('#content_of_contact').addClass('show_content');
        
        $('.active_state').addClass('inactive_state').removeClass('active_state');
        $('#contact_nav_text a').removeClass('inactive_state').addClass('active_state');
    });

    $('#about_nav_text a').click(function() {
        if ($('#content_of_about').attr('class').indexOf('show_content') !== -1) {
            return false;
        }

        $('#content_of_about').slideDown().removeClass('hide_content');
        // hide the div that currently has active state:
        $('.show_content').slideUp();
        $('.show_content').addClass('hide_content');
        $('.show_content').removeClass('show_content');

        $('#content_of_about').addClass('show_content');
        
        $('.active_state').addClass('inactive_state').removeClass('active_state');
        $('#about_nav_text a').removeClass('inactive_state').addClass('active_state');

    });

    $('#news_nav_text a').click(function() {
        if ($('#content_of_news').attr('class').indexOf('show_content') !== -1) {
            return false;
        } else {
            if (window.document.location.href.indexOf('dev.arcreps.com') !== - 1) {
                if (window.document.location.href.indexOf('/demo/') !== -1) {
                    window.document.location.href = '/demo/photographers/info/?a=news';
                } else {
                    window.document.location.href = '/arcreps/photographers/info/?a=news';
                }
            } else if (window.document.location.href.indexOf('dichirico.com') !== -1) {
                if (window.document.location.href.indexOf('/demo/') !== -1) {
                    window.document.location.href = '/demo/photographers/info/?a=news';
                } else {
                    window.document.location.href = '/arcreps/photographers/info/?a=news';
                }
            } else {
                window.document.location.href = '/photographers/info/?a=news';
            }
        }

        $('#content_of_news').slideDown().removeClass('hide_content');
        // hide the div that currently has active state:
        $('.show_content').slideUp();
        $('.show_content').addClass('hide_content');
        $('.show_content').removeClass('show_content');

        $('#content_of_news').addClass('show_content');
        
        $('.active_state').addClass('inactive_state').removeClass('active_state');
        $('#news_nav_text a').removeClass('inactive_state').addClass('active_state');

    });


    
});
