jQuery(document).ready(function(){
    jQuery('.activator').click(function(){
        jQuery('#overlay').fadeIn('fast',function(){
            jQuery('#comment-popup').animate({'top':'20px'},0);
        });
    });
    jQuery('.pop-close-cls').click(function(){
        jQuery('#comment-popup').animate({'top':'-700px'},0,function(){
            jQuery('#overlay').fadeOut('fast');
        });
    });
    
	jQuery('.theme').hover(function(){
	 jQuery(this).addClass('theme-sel')
		 jQuery('.theme-edit').show('fast');
		
    });

	jQuery('.theme-edit').hover(function(){
		 jQuery('.theme-edit').show('fast');
		 jQuery(this).prev('.theme').addClass('theme-sel')

    },function(){
	 jQuery('.theme-edit').hide('fast');
	  jQuery(this).prev('.theme').removeClass('theme-sel')
	});

});

/*Navigation script*/

jQuery(document).ready(function(){
	jQuery('.navigator li').hover(function(){	    
		 jQuery('.dropdown',jQuery(this)).show();			 
	},function(){
		jQuery('.dropdown',jQuery(this)).hide();
		jQuery('.sub-dropdown-right').hide(); 
	});

	 jQuery('.sub-dummy li').hover(function(){ 		      
		  var wdth = jQuery('.sub-dropdown-right').width();
		 jQuery('.sub-dropdown-right').hide(); 
		 jQuery('.sub-dropdown-right',jQuery(this)).show();
		
	},function(){
		 jQuery('.sub-dropdown-right',jQuery(this)).show(); 

	});

});

/* topbar language div show/hide code */

jQuery(document).ready(function() {
	jQuery('.language-option-div').hide();
	jQuery('.language-li').mouseout(function() {
		jQuery('.language-option-div').hide();
	});
	jQuery('.language-li').mouseover(function() {
		jQuery('.language-option-div').show();
	});
});
