jQuery(document).ready(function(){

	writeMyEmail();

	jQuery('.submenu-bot').each(function(){
		jQuery(this).width(jQuery(this).parent().width()-14);
	})
	if (jQuery('.clients-panel').length > 0) {
		if (jQuery('.clients-panel').height() < jQuery('.clients-content').outerHeight())
			jQuery('.clients-panel').height(jQuery('.clients-content').outerHeight());
	}
	jQuery(window).resize(function(){
		if (jQuery.browser.msie && jQuery.browser.version <= 7) {
			jQuery('#bg-inner').width(parseInt(jQuery('#bg').width()/2))
		}
		if ((jQuery('#container').height()+63)<jQuery(window).height()) {
			jQuery('#footer').css('position','fixed')
		} else {
			jQuery('#footer').css('position','static')
		}
	});
	jQuery(window).resize();
})
