jQuery(function ($) {
    //alert("The DOM is now loaded and can be manipulated.");
	$('.blk').children(':not(h2)').hide();
	$('.blk')
        .hover( function( event ){
            if($(this).hasClass('blk_on')) {
            }
            else {
                //var id = this.id;;
                $(this).children(':not(h2)').show();
        	$(this).addClass('blk_on');

            }
        return false;
    }, null);
	
		//if($('#frmContact_dlog').length) alert('#frmContact_dlog exist');
//$(".dragbox").click( function () {return false;} );
                
});

