

jQuery(document).ready(function() 
{

 

    jQuery('ul.tabs_type li').click(function(){
    	var thisClass = this.className;
        if(thisClass=='movie_tab')
        {
            jQuery('#tab_content_type div.mult_tab').hide('normal');
            if(jQuery('#tab_content_type div.movie_tab').css('display')=='none')
            {
        	   jQuery('#tab_content_type div.movie_tab').show('normal');
            }
            else{
                jQuery('#tab_content_type div.movie_tab').hide('normal');
            }
            
        }
        if(thisClass=='mult_tab')
        {
            jQuery('#tab_content_type div.movie_tab').hide('normal');
            if(jQuery('#tab_content_type div.mult_tab').css('display')=='none')
            {
        	   jQuery('#tab_content_type div.mult_tab').show('normal');
            }
            else{
                jQuery('#tab_content_type div.mult_tab').hide('normal');
            }
            
        }
	});
    


});
