var block_change = new Array;
function block_change_me(id){
	if ( ! block_change[id] ||   block_change[id] =='show' ) {
		if ( jQuery.browser.msie ){
			$('#block_content_'+id).hide();
		}else{
			$('#block_content_'+id).slideUp();
		}
		$('#block_pic_'+id).removeClass("md_infoPane_topBar_buttonDown");
		$('#block_pic_'+id).addClass("md_infoPane_topBar_buttonUp");
		block_change[id] ='hide';
	}else{
		if ( jQuery.browser.msie ){
			$('#block_content_'+id).show();
		}
		$('#block_content_'+id).slideDown();
		$('#block_pic_'+id).removeClass("md_infoPane_topBar_buttonUp");
		$('#block_pic_'+id).addClass("md_infoPane_topBar_buttonDown");
		block_change[id] ='show';
	}
}
function open_page( url ){
	window.open(url,'reseller','status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no ,width=600px,height=400px') ;
}
function page_select( name , v ){
	opener.document.getElementById(name).value=v;
	window.close();
}
$(document).ready(function() {
	change_list_class();
	$(".md_hover_tooltip").jHelperTip({
	 trigger: "hover", 
	 source: "attribute", 
	 attrName: "davari", 
	 opacity: 0.8, 
	 autoClose:true
	});
});
